diff --git a/statvar_imports/us_nces/nces_employed_college_grads/README.md b/statvar_imports/us_nces/nces_employed_college_grads/README.md index bb5f3b3f8c..b632874dbd 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/README.md +++ b/statvar_imports/us_nces/nces_employed_college_grads/README.md @@ -1,27 +1,101 @@ -NCSES_Employed_College_Grads_Import +# NCSES Employed College Graduates Import -how to download data: Download script (download_util_script.py). To download the data, you'll need to use the provided download script,download_util_script.py. This script will automatically create an "input" folder where you should place the file to be processed. +**Import Name:** `NCSES_Employed_College_Grads_Import` +**Dataset Provider:** National Center for Science and Engineering Statistics (NCSES), National Science Foundation (NSF) +**Survey:** National Survey of College Graduates (NSCG) +**Target Table:** Table 6-2 – *"Employed college graduates, by sex, ethnicity, race, and major occupation: 2003–23"* +**Provenance URL:** [NCSES Data Explorer](https://ncsesdata.nsf.gov/explorer/datatables?term=race&exactMatch=no&page=1&filterSuperTopic=Demographics&filterTopic=Sex&datatablespage=2) +**Survey Landing Page:** [NSCG Overview & Data Tables](https://ncses.nsf.gov/surveys/national-survey-college-graduates) +**Licensing & Terms:** U.S. Federal Government Public Domain ([NSF Open Data Policy](https://www.nsf.gov/policies/open-government)) -type of place: State. +--- -statvars: Demographics +## 1. Dataset Overview & Coverage -years: 2004 to 2021. +This import pipeline ingests longitudinal counts of employed U.S. college graduates holding a bachelor's degree or higher across demographics and occupation groups: -place_resolution: Places resolved to wikidataId in metadata sheet itself. +- **Geographic Coverage:** National level (`country/USA`). +- **Temporal Coverage:** Biennial survey cycles: 2003, 2010, 2013, 2015, 2017, 2019, 2021, 2023 and so on. +- **Demographics:** + - Gender: `Female`, `Male`, and Total (`Both sexes`). + - Ethnicity: `HispanicOrLatino`. + - Race: `WhiteAlone`, `BlackOrAfricanAmericanAlone`, `Asian`, `AmericanIndianOrAlaskaNative`, `OtherPacificIslander`, `TwoOrMoreRaces`. +- **Occupations:** + - S&E Occupations (Biological/agricultural/life scientists, Computer/mathematical scientists, Physical/related scientists, Social/related scientists, Engineers). + - S&E-Related Occupations. + - Non-S&E Occupations. +- **Statistical Variables:** 209 canonical StatVars under `dcs:StatVarObservation`. -Command to download using the download util. +### Survey Footnote '2023a' & Header Normalization +In Table 6-2 (NSF 25-322), the 2023 column header is labeled `2023a`: +- **What 'a' Represents:** According to official NCSES survey documentation, footnote `a` documents a survey questionnaire wording change for sex: + > *"The 2023 estimates by sex were based on responses to the question, 'What sex were you assigned at birth, on your original birth certificate? 1. Male, 2. Female,' which was a change from prior survey cycles."* + (Prior survey cycles asked *"What is your sex?"* in 2021 and *"Are you ... 1. Male, 2. Female"* in 2019 and earlier). +- **Not Provisional Data:** Footnote `a` does **not** indicate preliminary, unverified, or provisional data. NCSES/NSCG does not publish provisional data in these final analytic data releases; all published figures represent final survey estimates. +- **Why It Is Removed:** `stat_var_processor.py` matches year column headers via exact string matching against keys defined in `pv_map.csv` (`2023`). Leaving the footnote suffix intact causes `stat_var_processor.py` to fail to recognize the column, dropping all 2023 observations. Because the numbers represent final official estimates for the 2023 survey cycle, `download.py` safely normalizes `2023a` to `2023` in the header rows (rows 1–4) when generating `source_files/cleaned_.xlsx`. -python3 download_util_script.py --download_url="https://ncses.nsf.gov/pubs/nsf23306/assets/data-tables/tables/nsf23306-tab006-002.xlsx" --output_folder="source_files" --unzip=False +--- +## 2. Directory Layout -#### Processing the data: +```text +nces_employed_college_grads/ +├── README.md # Dataset and operational documentation +├── download.py # Dynamic scraper & header normalizer +├── manifest.json # Pipeline automation & Cloud Batch execution spec +├── metadata.csv # Global metadata config (place resolution to country/USA) +├── pv_map.csv # Property-value mapping rules & #Header directives +├── validation_config.json # Validation rules (0.1% deletions threshold) +├── source_files/ # Downloaded files (raw nsf*.xlsx and cleaned_*.xlsx) +├── output/ # Transformed output CSV and TMCF +├── counters/ # Counter logs produced by stat_var_processor +└── test_data/ # Minimal sample input and expected golden output +``` +--- -How to run: -python3 stat_var_processor.py --input_data='../../statvar_imports/us_nces/nces_employed_college_grads/test_data/.xlsx' --pv_map="../../statvar_imports/us_nces/nces_employed_college_grads/.csv" --output_path='../../statvar_imports/us_nces/nces_employed_college_grads/test_data/' --config="../../statvar_imports/us_nces/nces_employed_college_grads/.csv" +## 3. Execution Workflow +### Step 1: Download & Preprocess Source Data +Scrapes the NSCG landing page to locate the latest Table 6-2 Excel file, saves the raw file to `source_files/` to preserve data provenance, and generates an atomically written `source_files/cleaned_.xlsx` with normalized year headers: +```bash +python3 download.py +``` -Example -python3 stat_var_processor.py --input_data='../../statvar_imports/us_nces/nces_employed_college_grads/test_data/sample_input.xlsx' --pv_map="../../statvar_imports/us_nces/nces_employed_college_grads/pv_map.csv" --output_path='../../statvar_imports/us_nces/nces_employed_college_grads/test_data/sample_output' --config="../../statvar_imports/us_nces/nces_employed_college_grads/metadata.csv" +### Step 2: Transform & Generate StatisticalVariable Observations +Executes the standard Data Commons `stat_var_processor`: + +```bash +python3 ../../../tools/statvar_importer/stat_var_processor.py \ + --input_data=source_files/cleaned_*.xlsx \ + --pv_map=pv_map.csv \ + --config_file=metadata.csv \ + --output_path=output/nces_college \ + --output_counters=counters/nces_college.csv \ + --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf +``` + +### Generated Outputs +- **Cleaned Data:** `output/nces_college.csv` (1,571 observations). +- **Template MCF:** `output/nces_college.tmcf`. +- **Counters:** `counters/nces_college.csv`. + +--- + +## 4. Testing & Validation + +### Lint & Formatting Check +Run lint via java jar tool and verify compliance with Google style via YAPF: + +```bash +yapf --diff --style=google download.py +``` + +--- + +## 5. Pipeline Automation & Refresh Cadence + +- **Automation:** Scheduled via Cloud Batch in `manifest.json`. +- **Cron Cadence:** Twice monthly on the 4th and 18th at 07:00 UTC (`0 07 4,18 * *`). +- **Validation:** Enforced via `validation_config.json` with `DELETED_RECORDS_PERCENT` capped at `0.1`. 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 100755 index 0000000000..9db489952b --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/download.py @@ -0,0 +1,200 @@ +#!/usr/bin/env python3 +# 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. +"""Download and preprocess NSCG employed college graduates tables. + +This script scrapes the NCSES National Survey of College Graduates (NSCG) +landing page to discover the latest publication table (Table 6-2), downloads +the raw Excel file into source_files/, and creates an atomically written +cleaned copy (cleaned_.xlsx) where year headers with survey +methodology footnote suffixes (e.g. '2023a' -> '2023') are normalized strictly +within header rows 1-4. +""" + +import os +import re +import sys +from typing import Optional +from urllib.parse import urlparse +from absl import app +from absl import logging +import openpyxl + +# Add data/util to sys.path so we can import 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 import request_url + from download_util_script import download_file +except ImportError: + logging.fatal("Could not import download utilities from 'util/'.") + +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") + +# Pattern to strip footnote markers (e.g. '2023a' -> '2023'). +# Note: In Table 6-2 (NSF 25-322), footnote 'a' on '2023a' denotes a survey +# question change: "The 2023 estimates by sex were based on responses to the +# question, 'What sex were you assigned at birth, on your original birth +# certificate? 1. Male, 2. Female,' which was a change from prior survey cycles." +YEAR_HEADER_PATTERN = re.compile(r'^\s*(\d{4})([a-zA-Z*#].*|\s+.*)?$', + re.DOTALL) + + +def resolve_url(landing_url: str = LANDING_PAGE_URL, + file_pattern: str = FILE_PATTERN, + headers: Optional[dict] = None, + tries: int = 3, + delay: int = 5) -> Optional[str]: + """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 in seconds. + + Returns: + Absolute URL of the target file, or None if not found or on error. + """ + logging.info("Attempting to resolve target URL from landing page: %s", + landing_url) + + try: + content = request_url(landing_url, + headers=headers or {}, + output='text', + retries=tries, + retry_secs=delay) + except Exception as e: + logging.error("Failed to fetch landing page '%s': %s", landing_url, e) + return None + + if not content: + logging.error("Failed to fetch landing page '%s': empty response.", + landing_url) + return None + + matches = re.findall(file_pattern, content) + if not matches: + logging.error("No link matching pattern '%s' found on '%s'.", + file_pattern, 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("Dynamically resolved download URL: %s", resolved_url) + return resolved_url + + +def clean_year_headers(folder_path: str, max_header_row: int = 4) -> bool: + """Cleans year headers in downloaded Excel files by removing footnote suffixes. + + Normalizes footnote suffixes (e.g., '2023a' -> '2023') strictly in the top + header rows (rows 1-4). Leaves all data rows (row 5+) completely untouched. + Writes the output to a separate 'cleaned_' file atomically using a + temporary file and rename, preserving raw data provenance and original file + modification timestamps. + + Args: + folder_path: Path to directory containing downloaded Excel files. + max_header_row: Maximum row index to inspect for header columns. + + Returns: + 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') or filename.startswith('cleaned_'): + continue + + file_path = os.path.join(folder_path, filename) + cleaned_file_path = os.path.join(folder_path, f"cleaned_{filename}") + temp_cleaned_path = f"{cleaned_file_path}.tmp" + wb = None + try: + wb = openpyxl.load_workbook(file_path) + sheet = wb.active + 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 + # Atomic write: save to temporary file, then atomic rename + wb.save(temp_cleaned_path) + os.replace(temp_cleaned_path, cleaned_file_path) + logging.info("Successfully wrote cleaned file to '%s'", + cleaned_file_path) + except (ValueError, OSError) as e: + logging.error("Error cleaning headers in file '%s': %s", file_path, + e) + if os.path.exists(temp_cleaned_path): + try: + os.remove(temp_cleaned_path) + except OSError: + pass + return False + except Exception as e: + logging.error( + "An unexpected error occurred while cleaning headers in '%s': %s", + file_path, e) + if os.path.exists(temp_cleaned_path): + try: + os.remove(temp_cleaned_path) + except OSError: + pass + return False + finally: + if wb is not None: + wb.close() + + return True + + +def main(_): + logging.set_verbosity(logging.INFO) + logging.info("Script execution started...") + + # Ensure output directory exists idempotently + os.makedirs(OUTPUT_FOLDER, exist_ok=True) + + resolved_url = resolve_url(LANDING_PAGE_URL, FILE_PATTERN, None) + if not resolved_url: + logging.fatal("Failed to resolve URL from landing page.") + + if not download_file(resolved_url, OUTPUT_FOLDER, False, None): + logging.fatal( + "File download or processing failed. Check logs for details.") + + if not clean_year_headers(OUTPUT_FOLDER): + logging.fatal("Year header cleaning failed. Check logs for details.") + + logging.info("Script processing completed successfully.") + + +if __name__ == '__main__': + app.run(main) 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..cc4140d4a6 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/manifest.json +++ b/statvar_imports/us_nces/nces_employed_college_grads/manifest.json @@ -8,19 +8,23 @@ "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/cleaned_*.xlsx --pv_map=pv_map.csv --config_file=metadata.csv --output_path=output/nces_college --output_counters=counters/nces_college.csv --existing_statvar_mcf=gs://unresolved_mcf/scripts/statvar/stat_vars.mcf" ], "source_files": [ - "source_files/*.xlsx" + "source_files/*.xlsx", + "counters/*.csv", + "validation_config.json" ], "import_inputs": [ { "template_mcf": "output/nces_college.tmcf", - "cleaned_csv": "output/nces_college.csv" + "cleaned_csv": "output/nces_college.csv", + "node_mcf": "output/*.mcf" } ], - "cron_schedule": "0 07 4,18 * *" + "cron_schedule": "0 07 4,18 * *", + "validation_config_file": "validation_config.json" } ] -} \ No newline at end of file +} diff --git a/statvar_imports/us_nces/nces_employed_college_grads/metadata.csv b/statvar_imports/us_nces/nces_employed_college_grads/metadata.csv index ead029b778..4666924b40 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/metadata.csv +++ b/statvar_imports/us_nces/nces_employed_college_grads/metadata.csv @@ -2,4 +2,3 @@ param,value places_within,country/USA output_columns,"observationAbout,observationDate,value,variableMeasured,unit,scalingFactor,measurementMethod,observationPeriod" url,https://ncsesdata.nsf.gov/explorer/datatables?term=race&exactMatch=no&page=1&filterSuperTopic=Demographics&filterTopic=Sex&datatablespage=2 -comments,"Table nsf23306-tab006-002 (no direct link available), Changed Black to BlackOrAfricanAmericanAlone and added employmentStatus : Employed" 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..fc6db14144 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,39 +1,47 @@ -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,"""""",,,,,,,,,, -"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,,,,,,,,,,,, -All S&E occupations,occupation,ScienceAndEngineering,,,,,,,,,,,, -All S&E-related occupations,occupation,ScienceAndEngineeringRelated,,,,,,,,,,,, -,,,,,,,,,,,,,, -All Non-S&E occupations,occupation,NonScienceAndEngineering,,,,,,,,,,,, -D,value,0,#ignore,suppressed,,,,,,,,,, -S,value,0,#ignore,suppressed,,,,,,,,,, -*,value,0,#ignore,suppressed,,,,,,,,,, +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,, +2031,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2031,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2032,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2032,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2033,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2033,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2034,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2034,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +2035,populationType,Person,measuredProperty,count,value,@Number,observationAbout,country/USA,observationDate,2035,educationalAttainment,BachelorsDegreeOrHigher,employmentStatus,Employed,, +Both sexes,gender,"""""",race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,,,,,,, +Female,gender,Female,race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,,,,,,, +Male,gender,Male,race,"""""",ethnicity,"""""",#Header,"gender,race,ethnicity",,,,,,,, +# Not Hispanic or Latino - Empty visual section divider skipped to prevent incorrect prefixing +Hispanic or Latino,ethnicity,HispanicOrLatino,race,"""""",#Header,"ethnicity,race",,,,,,,,,, +White,race,WhiteAlone,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +Black or African American,race,BlackOrAfricanAmericanAlone,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +Asian,race,Asian,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +American Indian or Alaska Native,race,AmericanIndianOrAlaskaNative,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +Native Hawaiian or Other Pacific Islander,race,OtherPacificIslander,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +More than one race,race,TwoOrMoreRaces,ethnicity,"""""",#Header,"race,ethnicity",,,,,,,,,, +"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,,,,,,,,,,,, +*,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 deleted file mode 100644 index 103a19af4a..0000000000 Binary files a/statvar_imports/us_nces/nces_employed_college_grads/test_data/nces_input.xlsx and /dev/null differ diff --git a/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_input.xlsx b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_input.xlsx new file mode 100644 index 0000000000..8e3010e7f3 Binary files /dev/null and b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_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..634dbed666 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,1382 +1,122 @@ 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,2023,56061000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed,,,, 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,2023,8711000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation,,,, 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,2023,813000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation,,,, 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,2023,4573000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation,,,, 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,2023,430000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation,,,, 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,2023,631000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation,,,, 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,2023,2263000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation,,,, 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,2023,11253000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation,,,, 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,,,, -country/USA,2015,3786000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, -country/USA,2017,4280000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, -country/USA,2019,4803000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, +country/USA,2023,36097000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation,,,, 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,2023,6016000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino,,,, 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,2023,851000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringOccupation,,,, 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,2023,78000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCLifeScientistsOccupation,,,, 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,2023,425000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCComputerMathematicalOccupation,,,, 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,2023,38000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCPhysicalScientistsOccupation,,,, 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,2023,84000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCSocialScientistsRelatedWorkersOccupation,,,, 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,2023,226000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_SOCEngineersOccupation,,,, 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,2023,1142000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_ScienceAndEngineeringRelatedOccupation,,,, 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,2023,4023000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_HispanicOrLatino_NonScienceAndEngineeringOccupation,,,, 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,2023,112000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_AmericanIndianOrAlaskaNative,,,, country/USA,2021,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, -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,2023,12000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_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,2019,1000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_AmericanIndianOrAlaskaNative,,,, +country/USA,2023,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_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,2023,4000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_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,2023,13000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_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,2023,86000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_AmericanIndianOrAlaskaNative,,,, 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,2023,6134000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_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,2023,1771000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_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,2023,148000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_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,2023,1107000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_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,2023,53000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_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,2023,75000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_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,2023,388000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_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,2023,1664000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_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,2023,2699000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_Asian,,,, 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,2023,4523000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_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,2023,487000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_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,2023,30000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_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,2023,294000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_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,2023,15000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_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,2023,58000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_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,2023,90000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_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,2023,889000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_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,2023,3147000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_BlackOrAfricanAmericanAlone,,,, 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,2023,42000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_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,2023,7000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_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,2023,2000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_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,2023,10000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_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,2023,24000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_OtherPacificIslander,,,, 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,2023,37670000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_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,2023,5353000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_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,2023,541000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCLifeScientistsOccupation_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,2023,2620000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCComputerMathematicalOccupation_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,2023,311000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCPhysicalScientistsOccupation_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,2023,392000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCSocialScientistsRelatedWorkersOccupation_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,2023,1490000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_SOCEngineersOccupation_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,2023,7159000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringRelatedOccupation_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,2023,25158000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_NonScienceAndEngineeringOccupation_WhiteAlone,,,, 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,2023,1564000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_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,2023,230000,dcid:Count_Person_EducationalAttainmentBachelorsDegreeOrHigher_Employed_ScienceAndEngineeringOccupation_TwoOrMoreRaces,,,, diff --git a/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.tmcf b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.tmcf index b3a54a13ec..94ed696296 100644 --- a/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.tmcf +++ b/statvar_imports/us_nces/nces_employed_college_grads/test_data/ncses_output.tmcf @@ -1,10 +1,10 @@ -Node: E:nces_college->E0 -observationAbout: C:nces_college->observationAbout -observationDate: C:nces_college->observationDate -value: C:nces_college->value -variableMeasured: C:nces_college->variableMeasured -unit: C:nces_college->unit -scalingFactor: C:nces_college->scalingFactor -measurementMethod: C:nces_college->measurementMethod -observationPeriod: C:nces_college->observationPeriod +Node: E:ncses_output->E0 +observationAbout: C:ncses_output->observationAbout +observationDate: C:ncses_output->observationDate +value: C:ncses_output->value +variableMeasured: C:ncses_output->variableMeasured +unit: C:ncses_output->unit +scalingFactor: C:ncses_output->scalingFactor +measurementMethod: C:ncses_output->measurementMethod +observationPeriod: C:ncses_output->observationPeriod typeOf: dcs:StatVarObservation 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..a658238861 --- /dev/null +++ b/statvar_imports/us_nces/nces_employed_college_grads/validation_config.json @@ -0,0 +1,13 @@ +{ + "schema_version": "1.0", + "rules": [ + { + "rule_id": "check_deleted_records_percent", + "description": "Strictly enforce historical deletion average threshold of 0.1%", + "validator": "DELETED_RECORDS_PERCENT", + "params": { + "threshold": 0.1 + } + } + ] +}