diff --git a/statvar_imports/us_nces/nces_employed_college_grads/download.py b/statvar_imports/us_nces/nces_employed_college_grads/download.py new file mode 100644 index 0000000000..ff9616f3b9 --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/download.py @@ -0,0 +1,167 @@ +# Copyright 2025 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 +# +# https://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. + +import os +import sys +import re +from urllib.parse import urlparse +from absl import app +from absl import logging +import openpyxl +import requests + +# Add data/util to sys.path so we can import the shared wrapper functions +SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) +PROJECT_ROOT = os.path.abspath(os.path.join(SCRIPT_DIR, '../../..')) +UTIL_DIR = os.path.join(PROJECT_ROOT, 'util') +if UTIL_DIR not in sys.path: + sys.path.insert(0, UTIL_DIR) + +try: + from download_util_script import download_file, _retry_method +except ImportError: + logging.fatal( + "Could not import download_file from 'util/download_util_script.py'." + ) + sys.exit(1) + +LANDING_PAGE_URL = "https://ncses.nsf.gov/surveys/national-survey-college-graduates" +FILE_PATTERN = r'/pubs/[^/]+/assets/data-tables/tables/[^/]*tab006-002\.(?:xlsx|csv)' +OUTPUT_FOLDER = os.path.join(SCRIPT_DIR, "source_files") +YEAR_HEADER_PATTERN = re.compile(r'^\s*(\d{4})[a-zA-Z*#]+\s*$') + + +def resolve_url(landing_url=LANDING_PAGE_URL, + file_pattern=FILE_PATTERN, + headers=None, + tries=10, + delay=5, + backoff=2): + """ + Scrapes landing page HTML to dynamically find matching table URL. + + Args: + landing_url: URL of the webpage containing table links. + file_pattern: Regex pattern to match the target link. + headers: Optional dictionary of HTTP headers to send with the request. + tries: Number of retry attempts. + delay: Initial delay for retries. + backoff: Backoff factor for retries. + + Returns: + str: Absolute URL of the target file, or None if not found. + """ + logging.info(f"Attempting to resolve target URL from landing page: {landing_url}") + + try: + response = _retry_method(landing_url, headers, tries, delay, backoff) + response.raise_for_status() + except (requests.exceptions.RequestException, ValueError, OSError) as e: + logging.error(f"Failed to fetch landing page '{landing_url}': {e}") + return None + except Exception as e: + logging.fatal( + f"An unexpected error occurred while fetching landing page '{landing_url}': {e}" + ) + return None + + matches = re.findall(file_pattern, response.text) + if not matches: + logging.error( + f"No link matching pattern '{file_pattern}' found on '{landing_url}'." + ) + return None + + resolved_path = matches[0] + parsed_landing = urlparse(landing_url) + base_domain = f"{parsed_landing.scheme}://{parsed_landing.netloc}" + resolved_url = f"{base_domain}{resolved_path}" + logging.info(f"Dynamically resolved download URL: {resolved_url}") + return resolved_url + + +def clean_year_headers(folder_path, max_header_row=4): + """ + Cleans year headers in downloaded Excel files by removing footnote suffixes + (e.g., '2023a' -> '2023') strictly in the top header rows (rows 1-4). + Leaves all data rows (row 5+) completely untouched. + + Args: + folder_path: Path to the directory containing downloaded Excel files. + max_header_row: Maximum row index to inspect for header columns. + + Returns: + bool: True if header cleaning succeeded, False if an error occurred. + """ + if not folder_path or not os.path.exists(folder_path): + return True + + for filename in os.listdir(folder_path): + if not filename.endswith('.xlsx'): + continue + + file_path = os.path.join(folder_path, filename) + wb = None + try: + wb = openpyxl.load_workbook(file_path) + sheet = wb.active + modified = False + for row in sheet.iter_rows(max_row=max_header_row): + for cell in row: + if isinstance(cell.value, str): + new_val = YEAR_HEADER_PATTERN.sub(r'\1', cell.value) + if new_val != cell.value: + cell.value = new_val + modified = True + if modified: + wb.save(file_path) + logging.info(f"Successfully cleaned year headers in '{file_path}'") + except (ValueError, OSError) as e: + logging.error(f"Error cleaning headers in file '{file_path}': {e}") + return False + except Exception as e: + logging.fatal( + f"An unexpected error occurred while cleaning headers in '{file_path}': {e}" + ) + return False + finally: + if wb is not None: + wb.close() + + return True + + +def main(_): + logging.set_verbosity(logging.INFO) + logging.info("Script execution started...") + + resolved_url = resolve_url(LANDING_PAGE_URL, FILE_PATTERN, None) + if not resolved_url: + logging.error("Failed to resolve URL from landing page.") + sys.exit(1) + + if not download_file(resolved_url, OUTPUT_FOLDER, False, None, tries=10): + logging.error( + "File download or processing failed. Check logs for details.") + sys.exit(1) + + if not clean_year_headers(OUTPUT_FOLDER): + logging.error("Year header cleaning failed. Check logs for details.") + sys.exit(1) + + logging.info("Script processing completed successfully.") + + +if __name__ == '__main__': + app.run(main) diff --git a/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_observations.csv b/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_observations.csv new file mode 100644 index 0000000000..fe31f68afd --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_observations.csv @@ -0,0 +1,2 @@ +"observationAbout" +"country/USA" diff --git a/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_summary_report.csv b/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_summary_report.csv new file mode 100644 index 0000000000..1c9b4f84a8 --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/golden_data/golden_summary_report.csv @@ -0,0 +1,20 @@ +"ScalingFactors","MinDate","MeasurementMethods","observationPeriods","StatVar","Units","NumPlaces" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation","[]","1" +"[]","2015","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander","[]","1" +"[]","2013","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative","[]","1" +"[]","2003","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation","[]","1" +"[]","2019","[]","[]","Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander","[]","1" diff --git a/statvar_imports/us_nces/nces_employed_college_grads/manifest.json b/statvar_imports/us_nces/nces_employed_college_grads/manifest.json index 720b942338..491cf40aaa 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/manifest.json +++ b/statvar_imports/us_nces/nces_employed_college_grads/manifest.json @@ -8,11 +8,12 @@ "provenance_url": "https://ncsesdata.nsf.gov/explorer/datatables?term=race&exactMatch=no&page=1&filterSuperTopic=Demographics&filterTopic=Sex&datatablespage=2", "provenance_description": "NCSES is the U.S. agency that collects and reports data on science, engineering, and technology", "scripts": [ - "../../../util/download_util_script.py --download_url=https://ncses.nsf.gov/pubs/nsf23306/assets/data-tables/tables/nsf23306-tab006-002.xlsx --output_folder=source_files", - "../../../tools/statvar_importer/stat_var_processor.py --input_data=source_files/*.xlsx --pv_map=pv_map.csv --config_file=metadata.csv --output_path=output/nces_college" + "download.py", + "../../../tools/statvar_importer/stat_var_processor.py --input_data=source_files/*.xlsx --pv_map=pv_map.csv --config_file=metadata.csv --output_path=output/nces_college --output_counters=counters/nces_college.csv" ], "source_files": [ - "source_files/*.xlsx" + "source_files/*.xlsx", + "counters/*.csv" ], "import_inputs": [ { diff --git a/statvar_imports/us_nces/nces_employed_college_grads/pv_map.csv b/statvar_imports/us_nces/nces_employed_college_grads/pv_map.csv index d5e4294f2c..0052499e8d 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/pv_map.csv +++ b/statvar_imports/us_nces/nces_employed_college_grads/pv_map.csv @@ -1,38 +1,42 @@ -key,p1,v1,p2,v2,p3,v3,p4,v4,p5,v5,p6,v6,p7,v7 -2003,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2003,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2010,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2010,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2013,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2013,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2015,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2015,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2017,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2017,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2019,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2019,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2021,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2021,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2022,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2022,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2023,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2023,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2024,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2024,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2025,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2025,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2026,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2026,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2027,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2027,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2028,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2028,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2029,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2029,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -2030,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2030,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed -Male,gender,Male,race,"""""",ethnicity,"""""",,,,,,,, -Female,gender,Female,race,"""""",ethnicity,"""""",,,,,,,, -Both sexes,gender,"""""",race,"""""",ethnicity,"""""",,,,,,,, -White,race,WhiteAlone,ethnicity,"""""",,,,,,,,,, -Black or African American,race,BlackOrAfricanAmericanAlone,ethnicity,"""""",,,,,,,,,, -Hispanic or Latino,ethnicity,HispanicOrLatino,race,"""""",,,,,,,,,, -Asian,race,Asian,ethnicity,"""""",,,,,,,,,, -American Indian or Alaska Native,race,AmericanIndianOrAlaskaNative,ethnicity,"""""",,,,,,,,,, -Native Hawaiian or Other Pacific Islander,race,OtherPacificIslander,ethnicity,"""""",,,,,,,,,, -More than one race,race,TwoOrMoreRaces,ethnicity,"""""",,,,,,,,,, +key,p1,v1,p2,v2,p3,v3,p4,v4,p5,v5,p6,v6,p7,v7,p8,v8 +2003,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2003,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2010,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2010,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2013,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2013,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2015,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2015,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2017,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2017,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2019,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2019,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2021,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2021,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2022,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2022,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2023,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2023,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2024,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2024,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2025,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2025,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2026,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2026,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2027,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2027,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2028,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2028,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2029,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2029,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2030,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2030,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +Male,gender,Male,race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,, +Female,gender,Female,race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,, +Both sexes,gender,"""""",race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,, +Hispanic or Latino,ethnicity,HispanicOrLatino,race,"""""",#Header,"ethnicity,race",,,,, +Not Hispanic or Latino,ethnicity,NotHispanicOrLatino,race,"""""",#Header,"ethnicity,race",,,,, +White,race,WhiteAlone,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +Black or African American,race,BlackOrAfricanAmericanAlone,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +Asian,race,Asian,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +American Indian or Alaska Native,race,AmericanIndianOrAlaskaNative,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +Native Hawaiian or Other Pacific Islander,race,OtherPacificIslander,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +More than one race,race,TwoOrMoreRaces,ethnicity,NotHispanicOrLatino,#Header,"race,ethnicity",,,,, +Biological, agricultural, and other life scientists,occupation,SOCv2018/19-1000,,,,,,,,,,,, "Biological, agricultural, and other life scientists",occupation,SOCv2018/19-1000,,,,,,,,,,,, Computer and mathematical scientists,occupation,SOCv2018/15-0000,,,,,,,,,,,, Physical and related scientists,occupation,SOCv2018/19-2000,,,,,,,,,,,, Social and related scientists,occupation,SOCv2018/19-3000,,,,,,,,,,,, Engineers,occupation,SOCv2018/17-2000,,,,,,,,,,,, +S&E occupations,occupation,ScienceAndEngineering,,,,,,,,,,,, All S&E occupations,occupation,ScienceAndEngineering,,,,,,,,,,,, +S&E-related occupations,occupation,ScienceAndEngineeringRelated,,,,,,,,,,,, All S&E-related occupations,occupation,ScienceAndEngineeringRelated,,,,,,,,,,,, -,,,,,,,,,,,,,, +Non-S&E occupations,occupation,NonScienceAndEngineering,,,,,,,,,,,, All Non-S&E occupations,occupation,NonScienceAndEngineering,,,,,,,,,,,, D,value,0,#ignore,suppressed,,,,,,,,,, S,value,0,#ignore,suppressed,,,,,,,,,, diff --git a/statvar_imports/us_nces/nces_employed_college_grads/test_data/nces_input.xlsx b/statvar_imports/us_nces/nces_employed_college_grads/test_data/nces_input.xlsx index 103a19af4a..38588c2661 100644 Binary files a/statvar_imports/us_nces/nces_employed_college_grads/test_data/nces_input.xlsx and b/statvar_imports/us_nces/nces_employed_college_grads/test_data/nces_input.xlsx differ diff --git a/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.csv b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.csv index c8c3dae400..2574d89d83 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.csv +++ b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.csv @@ -1,67 +1,4 @@ observationAbout,observationDate,value,variableMeasured,unit,scalingFactor,measurementMethod,observationPeriod -country/USA,2003,32574000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2010,40623000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2013,43839000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2015,45941000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2017,48223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2019,50524000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2021,51764000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, -country/USA,2003,4588000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2010,5374000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2013,5766000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2015,6407000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2017,6769000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2019,7466000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2021,7894000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, -country/USA,2003,421000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2010,602000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2013,638000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2015,631000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2017,610000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2019,698000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2021,794000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, -country/USA,2003,1930000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2010,2396000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2013,2653000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2015,3156000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2017,3419000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2019,3774000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2021,4031000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, -country/USA,2003,298000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,327000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,324000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,331000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,366000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,409000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,408000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,477000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,518000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,596000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,570000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2017,646000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,663000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,712000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,1463000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2010,1531000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2013,1554000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2015,1719000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2017,1728000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2019,1921000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2021,1949000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, -country/USA,2003,5155000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,6966000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,7508000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,7867000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,8271000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,8893000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,9522000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,22831000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,28282000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,30566000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,31667000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,33183000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,34165000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,34349000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, country/USA,2003,1710000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, country/USA,2010,2898000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, country/USA,2013,3394000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, @@ -69,1314 +6,82 @@ country/USA,2015,3786000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeO country/USA,2017,4280000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, country/USA,2019,4803000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, country/USA,2021,5307000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, -country/USA,2003,199000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2010,274000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2013,357000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2015,387000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2017,505000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2019,564000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2021,692000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, -country/USA,2003,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2010,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2013,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2015,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2017,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2019,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2021,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, -country/USA,2003,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2010,106000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2013,146000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2015,159000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2017,200000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2019,238000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2021,328000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, -country/USA,2003,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,29000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,30000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,48000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2017,95000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,77000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,81000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,75000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2010,98000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2013,103000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2015,120000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2017,143000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2019,159000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2021,178000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, -country/USA,2003,265000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,434000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,572000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,629000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,702000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,821000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,843000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,1245000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,2190000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,2465000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,2769000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,3073000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,3418000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,3772000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, -country/USA,2003,131000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,118000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,130000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,117000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,121000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,182000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,126000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2023,6016000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, +country/USA,2003,15111000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2010,19978000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2013,22052000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2015,23218000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2017,24900000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2019,26341000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2021,26493000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2023,29603000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, +country/USA,2015,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, +country/USA,2017,46000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, +country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2003,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2017,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2015,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, +country/USA,2003,122000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2010,200000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2017,196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2019,212000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2021,223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2023,264000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, +country/USA,2019,519000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, +country/USA,2003,61000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2010,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2013,71000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2015,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2017,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2019,105000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2021,98000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2023,116000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_OtherPacificIslander,,,, +country/USA,2003,204000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2010,244000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2013,279000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2015,240000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2017,266000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2019,296000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2021,307000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2023,233000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, +country/USA,2003,17463000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2010,20644000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2013,21787000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2015,22723000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2017,23323000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2019,24183000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2021,25271000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, +country/USA,2023,26458000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, country/USA,2010,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, country/USA,2019,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, country/USA,2021,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,20000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,29000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,22000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,98000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,85000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,87000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,80000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,80000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,132000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,94000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,2222000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2010,3211000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2013,3671000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2015,4001000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2017,4498000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2019,5062000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2021,5475000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Asian,,,, -country/USA,2003,624000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,968000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,996000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,1321000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,1338000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,1543000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,1665000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,60000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2010,112000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2013,117000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2015,114000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2017,126000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2019,157000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2021,167000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2003,331000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2010,536000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2013,572000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2015,813000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2017,840000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2019,955000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2021,1064000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2003,36000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2010,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2013,49000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2015,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2017,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2019,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2021,61000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2003,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2010,29000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2013,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2015,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2017,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2019,44000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2021,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2003,173000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2010,251000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2013,217000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2015,279000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2017,283000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2019,331000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2021,316000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_Asian,,,, -country/USA,2003,478000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2010,796000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2013,910000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2015,871000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2017,1042000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2019,1151000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2021,1264000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2003,1120000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,1447000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,1766000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,1809000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,2118000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,2368000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,2546000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,2054000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,2747000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,3141000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,3434000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,3805000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,3895000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,4109000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,200000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,251000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,275000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,308000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,382000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,379000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,399000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,20000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,20000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,102000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,141000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,162000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,162000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,242000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,214000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,242000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,25000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,48000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,47000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,44000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,54000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,74000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,62000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,77000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,285000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,401000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,462000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,515000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,610000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,613000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,756000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,1569000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,2095000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,2404000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,2612000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,2813000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,2903000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,2955000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,90000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2010,119000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2013,133000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2015,182000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2017,137000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2019,129000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2021,136000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_OtherPacificIslander,,,, -country/USA,2003,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2003,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2017,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2021,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2003,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2010,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2013,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2015,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2017,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2019,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2021,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, -country/USA,2019,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_OtherPacificIslander,,,, -country/USA,2003,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2010,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2013,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2015,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2017,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2019,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2021,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2003,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2010,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2013,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2015,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2017,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2019,30000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2021,36000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2003,56000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,79000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,97000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,149000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,97000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,82000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,83000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2003,25973000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2010,30946000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2013,32698000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2015,33495000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2017,34435000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2019,35269000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2021,35373000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_WhiteAlone,,,, -country/USA,2003,3479000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,3789000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,4033000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,4267000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,4397000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,4784000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,4943000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,321000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2010,428000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2013,449000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2015,449000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2017,415000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2019,439000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2021,501000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2003,1390000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2010,1575000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2013,1726000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2015,1965000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2017,2070000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2019,2259000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2021,2296000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2003,237000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2010,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2013,242000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2015,233000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2017,265000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2019,300000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2021,288000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2003,394000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2010,427000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2013,467000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2015,407000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2017,451000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2019,480000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2021,513000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2003,1138000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2010,1101000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2013,1149000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2015,1213000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2017,1196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2019,1305000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2021,1345000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2003,4022000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2010,5208000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2013,5380000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2015,5676000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2017,5726000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2019,6053000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2021,6412000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2003,18472000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,21948000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,23285000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,23552000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,24313000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,24432000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,24018000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,394000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2010,585000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2013,673000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2015,926000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2017,946000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2019,1184000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2021,1238000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_TwoOrMoreRaces,,,, -country/USA,2003,60000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,69000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,84000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,103000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,109000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,158000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,169000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2003,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2010,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2013,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2021,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2010,34000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2013,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2015,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2017,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2019,88000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2021,89000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2021,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,20000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,31000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,36000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2010,78000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2013,128000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2015,128000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2017,147000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2019,198000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2021,189000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2003,270000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,437000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,462000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,695000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,689000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,829000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,880000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2003,15111000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2010,19978000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2013,22052000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2015,23218000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2017,24900000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2019,26341000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2021,26493000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female,,,, -country/USA,2003,1203000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2010,1486000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2013,1681000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2015,1818000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2017,1966000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2019,2193000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2021,2300000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2003,164000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2010,292000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2013,311000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2015,302000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2017,292000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2019,337000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2021,367000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation,,,, -country/USA,2003,552000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2010,602000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2013,673000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2015,833000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2017,919000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2019,975000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2021,1053000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2003,83000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,98000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,100000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,92000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,107000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,142000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,135000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,251000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,295000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,363000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,341000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2017,379000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,428000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,433000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,154000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2010,200000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2013,235000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2015,250000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2017,269000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2019,310000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2021,312000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation,,,, -country/USA,2003,2814000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,3877000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,4223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,4558000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,4764000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,5109000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,5494000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,11094000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,14615000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,16147000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,16842000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,18170000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,19040000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,18699000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2003,862000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2010,1533000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2013,1827000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2015,2045000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2017,2391000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2019,2668000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2021,2907000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female,,,, -country/USA,2003,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2010,84000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2013,120000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2015,117000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2017,154000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2019,182000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2021,206000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringOccupation,,,, -country/USA,2003,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2010,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2013,25000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2015,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2017,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2019,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2021,36000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCLifeScientistsOccupation,,,, -country/USA,2003,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2010,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2013,39000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2015,39000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2017,49000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2019,49000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2021,75000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCComputerMathematicalOccupation,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,31000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2017,46000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,58000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2013,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2015,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2017,26000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2019,31000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2021,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_SOCEngineersOccupation,,,, -country/USA,2003,135000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,254000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,322000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,372000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,427000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,492000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,537000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,670000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,1195000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,1385000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,1555000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,1809000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,1994000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,2164000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Female_NonScienceAndEngineeringOccupation,,,, -country/USA,2003,71000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,63000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,68000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,121000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,71000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,22000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,34000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,44000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,47000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,101000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,999000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2010,1359000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2013,1687000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2015,1882000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2017,2142000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2019,2457000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2021,2682000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_Asian,,,, -country/USA,2003,166000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,260000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,293000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,417000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,409000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,488000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,511000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2010,62000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2013,63000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2015,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2017,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2019,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2021,79000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2003,93000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2010,124000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2013,155000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2015,272000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2017,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2019,307000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2021,315000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2003,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2013,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2015,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2017,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2019,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2021,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2003,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2010,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2013,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2015,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2017,26000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2019,30000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2021,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2003,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2010,46000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2013,36000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2015,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2017,54000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2019,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2021,66000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_Asian,,,, -country/USA,2003,260000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2010,382000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2013,437000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2015,467000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2017,537000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2019,625000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2021,656000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2003,572000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,718000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,957000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,998000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,1196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,1343000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,1516000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,1207000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,1616000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,1865000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,2077000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,2292000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,2344000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,2432000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,80000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,108000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,110000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,104000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,168000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,135000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,144000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,45000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,71000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,109000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,70000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,83000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,34000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,199000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,291000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,301000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,362000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,355000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,488000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,928000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,1251000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,1465000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,1671000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,1762000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,1854000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,1801000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2010,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2013,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2015,75000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2017,67000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2019,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2021,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_OtherPacificIslander,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2003,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2010,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2013,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2015,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2017,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2019,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2003,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,43000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,59000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2003,11734000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2010,15036000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2013,16169000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2015,16582000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2017,17391000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2019,18005000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2021,17710000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_WhiteAlone,,,, -country/USA,2003,874000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,1009000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,1130000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,1144000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,1188000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,1322000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,1386000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,122000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2010,200000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2013,207000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2015,209000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2017,196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2019,212000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2021,223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2003,386000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2010,365000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2013,407000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2015,461000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2017,486000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2019,519000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2021,564000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2003,61000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2010,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2013,71000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2015,64000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2017,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2019,105000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2021,98000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2003,204000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2010,244000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2013,279000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2015,240000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2017,266000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2019,296000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2021,307000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2003,101000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2010,127000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2013,165000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2015,171000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2017,168000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2019,190000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2021,194000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2003,2158000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2010,2911000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2013,3063000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2015,3313000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2017,3314000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2019,3491000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2021,3649000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2003,8702000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,11115000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,11976000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,12125000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,12889000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,13192000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,12676000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,201000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2010,333000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2013,381000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2015,494000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2017,550000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2019,695000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2021,626000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_TwoOrMoreRaces,,,, -country/USA,2003,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,31000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,58000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,45000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2010,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2021,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2010,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2013,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2015,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2017,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2019,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2021,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2021,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2010,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2013,76000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2015,73000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2017,99000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2019,121000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2021,129000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2003,144000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,265000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,282000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,390000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,414000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,516000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,452000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Female_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2003,17463000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2010,20644000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2013,21787000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2015,22723000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2017,23323000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2019,24183000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2021,25271000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male,,,, -country/USA,2003,3385000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2010,3888000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2013,4084000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2015,4590000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2017,4803000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2019,5274000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2021,5594000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2003,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2010,310000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2013,328000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2015,329000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2017,319000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2019,361000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2021,427000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation,,,, -country/USA,2003,1378000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2010,1795000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2013,1980000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2015,2323000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2017,2500000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2019,2799000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2021,2979000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2003,215000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,229000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,224000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,239000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,259000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,267000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,273000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,226000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,234000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,229000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2017,266000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,235000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,279000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,1309000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2010,1331000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2013,1319000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2015,1469000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2017,1459000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2019,1612000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2021,1636000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation,,,, -country/USA,2003,2341000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,3089000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,3285000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,3309000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,3507000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,3785000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,4028000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,11736000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,13667000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,14418000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,14824000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,15013000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,15125000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,15649000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2003,847000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2010,1365000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2013,1566000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2015,1741000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2017,1889000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2019,2135000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2021,2401000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male,,,, -country/USA,2003,142000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2010,191000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2013,237000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2015,270000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2017,351000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2019,382000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2021,485000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringOccupation,,,, -country/USA,2003,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2013,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2015,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2017,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2019,30000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2021,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCLifeScientistsOccupation,,,, -country/USA,2003,54000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2010,73000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2013,107000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2015,120000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2017,151000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2019,189000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2021,254000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCComputerMathematicalOccupation,,,, -country/USA,2003,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2010,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2013,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2015,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2017,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2019,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2021,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCPhysicalScientistsOccupation,,,, -country/USA,2003,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2013,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2015,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2019,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2021,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCSocialScientistsRelatedWorkersOccupation,,,, -country/USA,2003,63000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2010,85000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2013,86000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2015,103000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2017,118000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2019,128000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2021,145000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_SOCEngineersOccupation,,,, -country/USA,2003,130000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2010,179000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2013,249000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2015,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2017,275000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2019,328000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2021,307000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_ScienceAndEngineeringRelatedOccupation,,,, -country/USA,2003,576000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2010,995000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2013,1080000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2015,1214000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2017,1263000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2019,1424000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2021,1608000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_Male_NonScienceAndEngineeringOccupation,,,, -country/USA,2003,61000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,68000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,53000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,62000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,43000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2010,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2013,48000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2015,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2017,32000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2019,31000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2021,43000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -country/USA,2003,1223000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2010,1852000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2013,1984000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2015,2118000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2017,2357000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2019,2605000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2021,2793000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_Asian,,,, -country/USA,2003,457000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,708000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,702000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,904000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,929000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,1055000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,1154000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,37000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2010,50000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2013,54000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2015,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2017,70000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2019,86000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2021,88000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_Asian,,,, -country/USA,2003,238000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2010,412000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2013,417000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2015,541000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2017,583000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2019,648000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2021,749000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_Asian,,,, -country/USA,2003,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2010,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2013,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2015,48000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2017,35000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2019,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2021,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_Asian,,,, -country/USA,2003,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2010,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2013,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2015,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2017,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2019,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2021,25000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_Asian,,,, -country/USA,2003,146000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2010,205000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2013,181000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2015,239000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2017,228000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2019,268000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2021,250000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_Asian,,,, -country/USA,2003,218000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2010,414000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2013,472000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2015,404000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2017,505000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2019,525000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2021,608000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_Asian,,,, -country/USA,2003,548000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2010,729000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2013,809000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2015,811000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2017,923000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2019,1025000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2021,1031000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_Asian,,,, -country/USA,2003,847000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,1131000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,1275000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,1358000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,1513000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,1551000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,1677000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,119000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,143000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,165000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,204000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,214000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,244000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,255000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,57000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,70000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,96000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,112000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,132000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,144000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,159000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,40000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,45000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,46000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,58000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,65000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,55000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,86000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,144000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,171000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,213000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,248000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,257000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,268000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,641000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2010,844000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2013,939000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2015,941000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2017,1051000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2019,1049000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2021,1154000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, -country/USA,2003,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2010,67000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2013,75000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2015,107000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2017,70000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2019,78000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2021,70000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_OtherPacificIslander,,,, -country/USA,2003,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,19000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,11000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_OtherPacificIslander,,,, -country/USA,2003,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2010,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2013,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2015,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2017,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2021,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_OtherPacificIslander,,,, -country/USA,2003,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2013,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2015,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2017,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2019,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2021,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_OtherPacificIslander,,,, -country/USA,2003,9000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2010,17000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2013,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2015,8000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2017,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2021,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_OtherPacificIslander,,,, -country/USA,2003,33000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2010,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2013,53000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2015,90000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2017,45000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2019,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2021,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, -country/USA,2003,14239000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2010,15910000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2013,16529000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2015,16913000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2017,17044000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2019,17264000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2021,17663000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_WhiteAlone,,,, -country/USA,2003,2605000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,2780000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,2902000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,3123000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,3209000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,3461000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,3557000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,199000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2010,228000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2013,242000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2015,241000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2017,218000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2019,227000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2021,278000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_WhiteAlone,,,, -country/USA,2003,1004000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2010,1210000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2013,1319000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2015,1504000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2017,1584000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2019,1740000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2021,1732000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_WhiteAlone,,,, -country/USA,2003,176000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2010,184000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2013,170000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2015,169000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2017,194000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2019,196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2021,191000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_WhiteAlone,,,, -country/USA,2003,190000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2010,183000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2013,188000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2015,168000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2017,186000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2019,185000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2021,206000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, -country/USA,2003,1037000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2010,975000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2013,984000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2015,1041000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2017,1027000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2019,1114000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2021,1151000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_WhiteAlone,,,, -country/USA,2003,1864000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2010,2297000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2013,2317000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2015,2363000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2017,2412000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2019,2562000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2021,2763000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_WhiteAlone,,,, -country/USA,2003,9770000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2010,10833000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2013,11309000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2015,11427000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2017,11423000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2019,11240000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2021,11343000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_WhiteAlone,,,, -country/USA,2003,193000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2010,252000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2013,292000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2015,432000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2017,396000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2019,490000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2021,612000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_TwoOrMoreRaces,,,, -country/USA,2003,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,51000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,61000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,72000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,73000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,100000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,124000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2010,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2013,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,5000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCLifeScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,18000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2010,26000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2013,35000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2015,41000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2017,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2019,60000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2021,76000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCComputerMathematicalOccupation_TwoOrMoreRaces,,,, -country/USA,2003,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2010,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2015,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2017,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2019,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2021,6000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCPhysicalScientistsOccupation_TwoOrMoreRaces,,,, -country/USA,2003,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,3000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCSocialScientistsRelatedWorkersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2010,14000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2013,16000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2015,21000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2017,23000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2019,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2021,28000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_SOCEngineersOccupation_TwoOrMoreRaces,,,, -country/USA,2003,27000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2010,29000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2013,52000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2015,56000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2017,48000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2019,76000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2021,60000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_ScienceAndEngineeringRelatedOccupation_TwoOrMoreRaces,,,, -country/USA,2003,126000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2010,172000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2013,180000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2015,305000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2017,276000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2019,313000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, -country/USA,2021,429000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_Male_NonScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, +country/USA,2013,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2003,199000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2010,228000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2013,242000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2015,241000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2017,218000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2019,227000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2021,278000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2023,277000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_WhiteAlone,,,, +country/USA,2003,176000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2010,184000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2013,170000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2015,169000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2017,194000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2019,196000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2021,191000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2023,195000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_WhiteAlone,,,, +country/USA,2003,190000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2010,183000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2013,188000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2015,168000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2017,186000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2019,185000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2021,206000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, +country/USA,2023,159000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_WhiteAlone,,,, diff --git a/statvar_imports/us_nces/nces_employed_college_grads/validation_config.json b/statvar_imports/us_nces/nces_employed_college_grads/validation_config.json new file mode 100644 index 0000000000..8a7d91f780 --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/validation_config.json @@ -0,0 +1,23 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_goldens_summary_report", + "description": "Validates summary_report.csv against the golden summary data", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_summary_report.csv", + "input_files": "../../input0/genmcf/summary_report.csv" + } + }, + { + "rule_id": "check_goldens_output_csv", + "description": "Verifies the generated output CSV data matches established critical golden records", + "validator": "GOLDENS_CHECK", + "params": { + "golden_files": "../../../../golden_data/golden_observations.csv", + "input_files": "../../nces_college.csv" + } + } + ] +}