From 63117d11b3b148698fc9c06e297f8f7f2f016d4a Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 15 Jul 2026 07:19:35 +0000 Subject: [PATCH 01/16] fixing download script --- import-automation/executor/requirements.txt | 1 + scripts/us_census/api_utils/census_api_config_fetcher.py | 4 ++-- scripts/us_census/api_utils/census_api_data_downloader.py | 4 ++-- scripts/us_census/api_utils/download_utils.py | 2 +- scripts/us_census/api_utils/download_utils_test.py | 2 +- scripts/us_census/api_utils/status_file_utils_test.py | 2 +- scripts/us_census/api_utils/url_list_compiler.py | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/import-automation/executor/requirements.txt b/import-automation/executor/requirements.txt index 7ee91417a2..f052145a68 100644 --- a/import-automation/executor/requirements.txt +++ b/import-automation/executor/requirements.txt @@ -1,6 +1,7 @@ # Requirements for Python scripts in this repo that have automation enabled! absl-py +aiolimiter arcgis2geojson beautifulsoup4 chardet diff --git a/scripts/us_census/api_utils/census_api_config_fetcher.py b/scripts/us_census/api_utils/census_api_config_fetcher.py index 0d14367047..6ea9b5d9f8 100644 --- a/scripts/us_census/api_utils/census_api_config_fetcher.py +++ b/scripts/us_census/api_utils/census_api_config_fetcher.py @@ -29,9 +29,9 @@ CONFIG_PATH_ = os.path.join(module_dir_, 'config_files') path.insert(1, os.path.join(module_dir_, '../../../')) -from .download_utils import download_url_list_iterations, async_save_resp_json +from download_utils import download_url_list_iterations, async_save_resp_json from tools.download_utils.requests_wrappers import request_url_json -from .status_file_utils import get_pending_or_fail_url_list, sync_status_list +from status_file_utils import get_pending_or_fail_url_list, sync_status_list FLAGS = flags.FLAGS diff --git a/scripts/us_census/api_utils/census_api_data_downloader.py b/scripts/us_census/api_utils/census_api_data_downloader.py index 7a4f812f0d..3809c7d791 100644 --- a/scripts/us_census/api_utils/census_api_data_downloader.py +++ b/scripts/us_census/api_utils/census_api_data_downloader.py @@ -35,9 +35,9 @@ module_dir_ = os.path.dirname(os.path.realpath(__file__)) path.insert(1, os.path.join(module_dir_, '../../../')) -from .download_utils import download_url_list_iterations +from download_utils import download_url_list_iterations from tools.download_utils.requests_wrappers import request_url_json -from .status_file_utils import sync_status_list +from status_file_utils import sync_status_list FLAGS = flags.FLAGS diff --git a/scripts/us_census/api_utils/download_utils.py b/scripts/us_census/api_utils/download_utils.py index 4cd58930f1..d75b8fdbb6 100644 --- a/scripts/us_census/api_utils/download_utils.py +++ b/scripts/us_census/api_utils/download_utils.py @@ -24,7 +24,7 @@ from typing import Any, Callable, Union from aiolimiter import AsyncLimiter -from .status_file_utils import get_pending_or_fail_url_list, url_to_download +from status_file_utils import get_pending_or_fail_url_list, url_to_download async def async_save_resp_json(response: Any, filename: str): diff --git a/scripts/us_census/api_utils/download_utils_test.py b/scripts/us_census/api_utils/download_utils_test.py index ed4e0651a4..7f94b0a917 100644 --- a/scripts/us_census/api_utils/download_utils_test.py +++ b/scripts/us_census/api_utils/download_utils_test.py @@ -14,7 +14,7 @@ import os import unittest -from .download_utils import * +from download_utils import * class TestCommonUtil(unittest.TestCase): diff --git a/scripts/us_census/api_utils/status_file_utils_test.py b/scripts/us_census/api_utils/status_file_utils_test.py index c5b6cc2770..4e58792f21 100644 --- a/scripts/us_census/api_utils/status_file_utils_test.py +++ b/scripts/us_census/api_utils/status_file_utils_test.py @@ -15,7 +15,7 @@ import os import unittest -from .status_file_utils import * +from status_file_utils import * class TestCommonUtil(unittest.TestCase): diff --git a/scripts/us_census/api_utils/url_list_compiler.py b/scripts/us_census/api_utils/url_list_compiler.py index 8e59ffd2f0..394ecbb188 100644 --- a/scripts/us_census/api_utils/url_list_compiler.py +++ b/scripts/us_census/api_utils/url_list_compiler.py @@ -26,7 +26,7 @@ from typing import Any, Union from census_api_helpers import * -from .status_file_utils import sync_status_list +from status_file_utils import sync_status_list FLAGS = flags.FLAGS From 9908497a15bcc06ab3c3efc11676362f3f6f7be7 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 06:56:37 +0000 Subject: [PATCH 02/16] fixed download script --- scripts/us_census/api_utils/census_api_data_downloader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/us_census/api_utils/census_api_data_downloader.py b/scripts/us_census/api_utils/census_api_data_downloader.py index 3809c7d791..be77b02ef4 100644 --- a/scripts/us_census/api_utils/census_api_data_downloader.py +++ b/scripts/us_census/api_utils/census_api_data_downloader.py @@ -300,6 +300,7 @@ def consolidate_files(dataset: str, # substitute annotations if table_id in column_name and column_name[-1] != 'A': if replace_annotations: + df2[column_name] = df2[column_name].astype(object) df2.loc[df2[column_name + 'A'].notna(), column_name] = df2[column_name + 'A'] if drop_annotations: From 673a5ed114571b6d9ad9713739c4334610d90fdf Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 08:07:03 +0000 Subject: [PATCH 03/16] corrected schema --- .../subject_tables/s1201/S1201_spec.json | 36 +------------------ .../subject_tables/s1201/generate_col_map.py | 11 +++++- .../acs5yr/subject_tables/s1201/process.py | 19 ++++++---- 3 files changed, 23 insertions(+), 43 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json index 4c552968f4..b3a662d82e 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json +++ b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json @@ -229,41 +229,7 @@ } }, - "overwrite_dcids": { - "Count_Person_15OrMoreYears_Separated": "Count_Person_Separated", - "Count_Person_15OrMoreYears_NeverMarried": "Count_Person_NeverMarried", - "Count_Person_15OrMoreYears_Divorced": "Count_Person_Divorced", - "Count_Person_15OrMoreYears_Widowed": "Count_Person_Widowed", - "Count_Person_15OrMoreYears_MarriedAndNotSeparated": "Count_Person_MarriedAndNotSeparated", - "MarginOfError_Count_Person_15OrMoreYears_Separated": "MarginOfError_Count_Person_Separated", - "MarginOfError_Count_Person_15OrMoreYears_NeverMarried": "MarginOfError_Count_Person_NeverMarried", - "MarginOfError_Count_Person_15OrMoreYears_Divorced": "MarginOfError_Count_Person_Divorced", - "MarginOfError_Count_Person_15OrMoreYears_Widowed": "MarginOfError_Count_Person_Widowed", - "MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated": "MarginOfError_Count_Person_MarriedAndNotSeparated", - - "Count_Person_15OrMoreYears_Male_Separated": "Count_Person_Male_Separated", - "Count_Person_15OrMoreYears_Male_NeverMarried": "Count_Person_Male_NeverMarried", - "Count_Person_15OrMoreYears_Male_Divorced": "Count_Person_Male_Divorced", - "Count_Person_15OrMoreYears_Male_Widowed": "Count_Person_Male_Widowed", - "Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated": "Count_Person_Male_MarriedAndNotSeparated", - "MarginOfError_Count_Person_15OrMoreYears_Male_Separated": "MarginOfError_Count_Person_Male_Separated", - "MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried": "MarginOfError_Count_Person_Male_NeverMarried", - "MarginOfError_Count_Person_15OrMoreYears_Male_Divorced": "MarginOfError_Count_Person_Male_Divorced", - "MarginOfError_Count_Person_15OrMoreYears_Male_Widowed": "MarginOfError_Count_Person_Male_Widowed", - "MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated": "MarginOfError_Count_Person_Male_MarriedAndNotSeparated", - - "Count_Person_15OrMoreYears_Female_Separated": "Count_Person_Female_Separated", - "Count_Person_15OrMoreYears_Female_NeverMarried": "Count_Person_Female_NeverMarried", - "Count_Person_15OrMoreYears_Female_Divorced": "Count_Person_Female_Divorced", - "Count_Person_15OrMoreYears_Female_Widowed": "Count_Person_Female_Widowed", - "Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated": "Count_Person_Female_MarriedAndNotSeparated", - "MarginOfError_Count_Person_15OrMoreYears_Female_Separated": "MarginOfError_Count_Person_Female_Separated", - "MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried": "MarginOfError_Count_Person_Female_NeverMarried", - "MarginOfError_Count_Person_15OrMoreYears_Female_Divorced": "MarginOfError_Count_Person_Female_Divorced", - "MarginOfError_Count_Person_15OrMoreYears_Female_Widowed": "MarginOfError_Count_Person_Female_Widowed", - "MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated": "MarginOfError_Count_Person_Female_MarriedAndNotSeparated" - - }, + "overwrite_dcids": {}, "denominators":{ "Estimate!!Total!!Population 15 years and over": [ "Estimate!!Now married (except separated)!!Population 15 years and over", diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index 8bc25480ad..95b61b9bed 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -25,11 +25,20 @@ from collections import OrderedDict import pandas as pd +import importlib.util + # Allows the following module imports to work when running as a script _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) sys.path.append(os.path.join(_SCRIPT_PATH, '../common')) # for statvar_dcid_generator -from generate_col_map import generate_stat_var_map + +# Dynamically import generate_stat_var_map from ../common/generate_col_map.py +# to avoid circular and conflicting name import issues. +_COMMON_COL_MAP_PATH = os.path.abspath(os.path.join(_SCRIPT_PATH, '../common/generate_col_map.py')) +_spec = importlib.util.spec_from_file_location("common_generate_col_map", _COMMON_COL_MAP_PATH) +_common_generate_col_map = importlib.util.module_from_spec(_spec) +_spec.loader.exec_module(_common_generate_col_map) +generate_stat_var_map = _common_generate_col_map.generate_stat_var_map def process_zip_file(zip_file_path, diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index 716b0964dc..fc4a843110 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -12,9 +12,15 @@ # See the License for the specific language governing permissions and # limitations under the License. """Generic proces module to generate the csv/tmcf and csv""" -# TODO: Add unit tests +# Allows the sibling/parent module imports to work when running as a script or module import os import sys +_SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) +sys.path.append(_SCRIPT_PATH) +sys.path.append(os.path.join(_SCRIPT_PATH, + '../common')) # for col_map_generator, data_loader + +# TODO: Add unit tests import json from zipfile import ZipFile import pandas as pd @@ -22,12 +28,7 @@ from absl import app, flags # TODO: logs from the column map step is empty when invoked from here, needs to be checked -from .generate_col_map import generate_stat_var_map, process_zip_file - -# Allows the following module imports to work when running as a script -_SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(os.path.join(_SCRIPT_PATH, - '../common')) # for col_map_generator, data_loader +from generate_col_map import process_zip_file from data_loader import process_subject_tables FLAGS = flags.FLAGS @@ -56,6 +57,7 @@ def set_column_map(input_path, spec_path, output_dir): generated_col_map = process_zip_file(input_path, spec_path, write_output=False) + os.makedirs(output_dir, exist_ok=True) f = open(os.path.join(output_dir, 'column_map.json'), 'w') json.dump(generated_col_map, f, indent=4) f.close() @@ -71,6 +73,9 @@ def main(argv): has_percent = FLAGS.has_percent debug = FLAGS.debug + if not os.path.exists(output_dir): + os.makedirs(output_dir) + # TODO: remove the constraint of inputs being only zip file # context: the current implementation of the column map generator accepts # only zip files as input and we will need to add new methods to handle inputs From f796294d45f17794d09b64d16ccde43f565aa917 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 19:10:34 +0000 Subject: [PATCH 04/16] fixed SVs --- .../subject_tables/s1201/S1201_spec.json | 145 ++--- .../s1201/testdata/S1201_cleaned.csv | 600 +++++++++--------- .../s1201/testdata/S1201_output.mcf | 60 +- .../s1201/testdata/column_map.json | 600 +++++++++--------- 4 files changed, 668 insertions(+), 737 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json index b3a662d82e..3fc94ec857 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json +++ b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json @@ -7,7 +7,6 @@ "statType": "measuredValue", "measuredProperty": "count", "age": "[15 - Years]" - }, "Margin of Error": { "statType": "marginOfError", @@ -28,7 +27,7 @@ "Females 16 years and over": "[16 - Years]", "Males 15 years and over": "[15 - Years]", "Females 15 years and over": "[15 - Years]" - }, + }, "gender": { "Males 15 years and over": "Male", "Males 16 years and over": "Male", @@ -47,7 +46,6 @@ "Hispanic or Latino origin (of any race)": "HispanicOrLatino", "White alone, not Hispanic or Latino": "WhiteAloneNotHispanicOrLatino" }, - "maritalStatus": { "Now married (except separated)": "MarriedAndNotSeparated", "Widowed": "Widowed", @@ -63,7 +61,7 @@ "employmentStatus": { "In labor force": "BLS_InLaborForce" }, - "nativity":{ + "nativity": { "Native": "USC_Native", "Foreign born": "USC_ForeignBorn" } @@ -79,20 +77,19 @@ } } ], - - "ignoreColumns": [ + "ignoreColumns": [ "id", "Geographic Area Name", "PERCENT ALLOCATED", "PERCENT IMPUTED", - "Population 15 years and over.1" - ], - - "preprocess": { - "find_and_replace":{ + "Population 15 years and over.1", + "SUMMARY INDICATOR" + ], + "preprocess": { + "find_and_replace": { "Total!!Estimate!!15 to 19 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Total!!Margin of Error!!15 to 19 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Total!!Estimate!!20 to 34 years":"Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Total!!Estimate!!20 to 34 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Total!!Margin of Error!!20 to 34 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Total!!Estimate!!35 to 44 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Total!!Margin of Error!!35 to 44 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -102,10 +99,9 @@ "Total!!Margin of Error!!55 to 64 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Total!!Estimate!!65 years and over": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Total!!Margin of Error!!65 years and over": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - "Now married (except separated)!!Estimate!!15 to 19 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Now married (except separated)!!Margin of Error!!15 to 19 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Now married (except separated)!!Estimate!!20 to 34 years":"Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Now married (except separated)!!Estimate!!20 to 34 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Now married (except separated)!!Margin of Error!!20 to 34 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Now married (except separated)!!Estimate!!35 to 44 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Now married (except separated)!!Margin of Error!!35 to 44 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -115,10 +111,9 @@ "Now married (except separated)!!Margin of Error!!55 to 64 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Now married (except separated)!!Estimate!!65 years and over": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Now married (except separated)!!Margin of Error!!65 years and over": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - "Widowed!!Estimate!!15 to 19 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Widowed!!Margin of Error!!15 to 19 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Widowed!!Estimate!!20 to 34 years":"Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Widowed!!Estimate!!20 to 34 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Widowed!!Margin of Error!!20 to 34 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Widowed!!Estimate!!35 to 44 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Widowed!!Margin of Error!!35 to 44 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -128,10 +123,9 @@ "Widowed!!Margin of Error!!55 to 64 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Widowed!!Estimate!!65 years and over": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Widowed!!Margin of Error!!65 years and over": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - "Divorced!!Estimate!!15 to 19 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Divorced!!Margin of Error!!15 to 19 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Divorced!!Estimate!!20 to 34 years":"Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Divorced!!Estimate!!20 to 34 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Divorced!!Margin of Error!!20 to 34 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Divorced!!Estimate!!35 to 44 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Divorced!!Margin of Error!!35 to 44 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -141,10 +135,9 @@ "Divorced!!Margin of Error!!55 to 64 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Divorced!!Estimate!!65 years and over": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Divorced!!Margin of Error!!65 years and over": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - "Separated!!Estimate!!15 to 19 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Separated!!Margin of Error!!15 to 19 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Separated!!Estimate!!20 to 34 years":"Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Separated!!Estimate!!20 to 34 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Separated!!Margin of Error!!20 to 34 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Separated!!Estimate!!35 to 44 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Separated!!Margin of Error!!35 to 44 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -154,10 +147,9 @@ "Separated!!Margin of Error!!55 to 64 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Separated!!Estimate!!65 years and over": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Separated!!Margin of Error!!65 years and over": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - "Never married!!Estimate!!15 to 19 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Never married!!Margin of Error!!15 to 19 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Never married!!Estimate!!20 to 34 years":"Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Never married!!Estimate!!20 to 34 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Never married!!Margin of Error!!20 to 34 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Never married!!Estimate!!35 to 44 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Never married!!Margin of Error!!35 to 44 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -167,70 +159,53 @@ "Never married!!Margin of Error!!55 to 64 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Never married!!Estimate!!65 years and over": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Never married!!Margin of Error!!65 years and over": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", - - "Total!!Estimate!!65 years and over!!Females 15 years and over": "Total!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Total!!Margin of Error!!65 years and over!!Females 15 years and over" : "Total!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Total!!Margin of Error!!65 years and over!!Females 15 years and over": "Total!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over" : "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "Widowed!!Estimate!!65 years and over!!Females 15 years and over": "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over" : "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "Divorced!!Estimate!!65 years and over!!Females 15 years and over": "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over" : "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "Separated!!Estimate!!65 years and over!!Females 15 years and over": "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Separated!!Margin of Error!!65 years and over!!Females 15 years and over" : "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "Never married!!Estimate!!65 years and over!!Females 15 years and over": "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Never married!!Margin of Error!!65 years and over!!Females 15 years and over" : "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over", - + "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over", "15 to 19 years.1": "AGE AND SEX!!Females 15 years and over!!15 to 19 years", - "20 to 34 years.1":"AGE AND SEX!!Females 15 years and over!!20 to 34 years", + "20 to 34 years.1": "AGE AND SEX!!Females 15 years and over!!20 to 34 years", "35 to 44 years.1": "AGE AND SEX!!Females 15 years and over!!35 to 44 years", "45 to 54 years.1": "AGE AND SEX!!Females 15 years and over!!45 to 54 years", "55 to 64 years.1": "AGE AND SEX!!Females 15 years and over!!55 to 64 years", "65 years and over.1": "AGE AND SEX!!Females 15 years and over!!65 years and over", - - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", - "In labor force.1": "Females 16 years and over!!In labor force" } - }, - - "overwrite_dcids": {}, - "denominators":{ + }, + "overwrite_dcids": {}, + "denominators": { "Estimate!!Total!!Population 15 years and over": [ "Estimate!!Now married (except separated)!!Population 15 years and over", "Estimate!!Widowed!!Population 15 years and over", @@ -367,7 +342,6 @@ "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over" ], - "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", @@ -487,8 +461,6 @@ "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over" ], - - "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -505,7 +477,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -523,7 +494,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -541,7 +511,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -559,7 +528,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -577,7 +545,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -595,7 +562,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -613,7 +579,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -631,7 +596,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", @@ -649,7 +613,6 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)" - ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", @@ -667,10 +630,8 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino" - ], - - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over":[ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over": [ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over", @@ -687,7 +648,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force":[ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force": [ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", @@ -704,7 +665,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over":[ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over": [ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over", @@ -721,7 +682,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force":[ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force": [ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", @@ -738,8 +699,6 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force" ], - - "Total!!Estimate!!Population 15 years and over": [ "Now married (except separated)!!Estimate!!Population 15 years and over", "Widowed!!Estimate!!Population 15 years and over", @@ -836,7 +795,6 @@ "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over" ], - "Total!!Estimate!!AGE AND SEX!!Females 15 years and over": [ "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over", "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over", @@ -921,7 +879,6 @@ "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over!!65 years and over", "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over!!65 years and over" ], - "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Widowed!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -933,7 +890,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -946,7 +902,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -959,7 +914,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -972,7 +926,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -985,7 +938,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -998,7 +950,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -1011,7 +962,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" - ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -1024,7 +974,6 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" - ], "Total!!Estimate!!Hispanic or Latino origin (of any race)": [ "Now married (except separated)!!Estimate!!Hispanic or Latino origin (of any race)", @@ -1037,7 +986,6 @@ "Divorced!!Margin of Error!!Hispanic or Latino origin (of any race)", "Separated!!Margin of Error!!Hispanic or Latino origin (of any race)", "Never married!!Margin of Error!!Hispanic or Latino origin (of any race)" - ], "Total!!Estimate!!White alone, not Hispanic or Latino": [ "Now married (except separated)!!Estimate!!White alone, not Hispanic or Latino", @@ -1050,10 +998,8 @@ "Divorced!!Margin of Error!!White alone, not Hispanic or Latino", "Separated!!Margin of Error!!White alone, not Hispanic or Latino", "Never married!!Margin of Error!!White alone, not Hispanic or Latino" - ], - - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", @@ -1065,7 +1011,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", @@ -1077,7 +1023,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", @@ -1089,7 +1035,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", @@ -1101,7 +1047,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force" ], - "Total!!Estimate!!NATIVITY!!Native":[ + "Total!!Estimate!!NATIVITY!!Native": [ "Now married (except separated)!!Estimate!!NATIVITY!!Native", "Widowed!!Estimate!!NATIVITY!!Native", "Divorced!!Estimate!!NATIVITY!!Native", @@ -1113,7 +1059,7 @@ "Separated!!Margin of Error!!NATIVITY!!Native", "Never married!!Margin of Error!!NATIVITY!!Native" ], - "Total!!Estimate!!NATIVITY!!Foreign born":[ + "Total!!Estimate!!NATIVITY!!Foreign born": [ "Now married (except separated)!!Estimate!!NATIVITY!!Foreign born", "Widowed!!Estimate!!NATIVITY!!Foreign born", "Divorced!!Estimate!!NATIVITY!!Foreign born", @@ -1125,8 +1071,6 @@ "Separated!!Margin of Error!!NATIVITY!!Foreign born", "Never married!!Margin of Error!!NATIVITY!!Foreign born" ], - - "Total!!Estimate!!15 to 19 years": [ "Now married (except separated)!!Estimate!!15 to 19 years", "Widowed!!Estimate!!15 to 19 years", @@ -1139,7 +1083,6 @@ "Separated!!Margin of Error!!15 to 19 years", "Never married!!Margin of Error!!15 to 19 years" ], - "Total!!Estimate!!20 to 34 years": [ "Now married (except separated)!!Estimate!!20 to 34 years", "Widowed!!Estimate!!20 to 34 years", @@ -1200,7 +1143,6 @@ "Separated!!Margin of Error!!65 years and over", "Never married!!Margin of Error!!65 years and over" ], - "Total!!Estimate!!65 years and over!!Females 15 years and over": [ "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over", "Widowed!!Estimate!!65 years and over!!Females 15 years and over", @@ -1213,7 +1155,6 @@ "Separated!!Margin of Error!!65 years and over!!Females 15 years and over", "Never married!!Margin of Error!!65 years and over!!Females 15 years and over" ], - "Total!!Estimate!!15 to 19 years.1": [ "Now married (except separated)!!Estimate!!15 to 19 years.1", "Widowed!!Estimate!!15 to 19 years.1", @@ -1286,7 +1227,6 @@ "Separated!!Margin of Error!!65 years and over.1", "Never married!!Margin of Error!!65 years and over.1" ], - "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Widowed!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -1298,7 +1238,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -1311,7 +1250,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -1324,7 +1262,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -1337,7 +1274,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -1350,7 +1286,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -1363,7 +1298,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -1376,7 +1310,6 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" - ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -1389,10 +1322,8 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" - ], - - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", @@ -1404,7 +1335,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", @@ -1416,7 +1347,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1":[ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1": [ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", @@ -1429,4 +1360,4 @@ "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force.1" ] } -} +} \ No newline at end of file diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv index af648c8606..ef070ee697 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv @@ -57,10 +57,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,743.0 2019,geoId/56,dcid:Count_Person_InLaborForce_Female,137564.0 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1305.0 -2019,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,251469.911 -2019,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3265.843 -2019,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,127451.58 -2019,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1898.72 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,251469.911 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3265.843 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,127451.58 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1898.72 2019,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,230.82 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,115.41 2019,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,21521.878 @@ -73,8 +73,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,640.432 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,30874.792 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,655.98 -2019,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123772.86 -2019,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1604.463 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123772.86 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1604.463 2019,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,157.374 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,87.43 2019,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25172.24 @@ -115,10 +115,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1805.024 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,75797.764 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1238.076 -2019,geoId/56,dcid:Count_Person_Widowed,25193.646 -2019,geoId/56,dcid:MarginOfError_Count_Person_Widowed,933.098 -2019,geoId/56,dcid:Count_Person_Male_Widowed,6170.84 -2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,474.68 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25193.646 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,933.098 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,6170.84 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,474.68 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,62.746 @@ -131,8 +131,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,200.135 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4810.52 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,437.32 -2019,geoId/56,dcid:Count_Person_Female_Widowed,19024.347 -2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,916.836 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19024.347 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,916.836 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,34.972 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.972 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,169.32 @@ -173,10 +173,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,902.512 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3714.228 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,412.692 -2019,geoId/56,dcid:Count_Person_Divorced,58318.625 -2019,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1866.196 -2019,geoId/56,dcid:Count_Person_Male_Divorced,28955.48 -2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1186.7 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58318.625 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1866.196 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28955.48 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1186.7 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2949.062 @@ -189,8 +189,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,560.378 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,6166.212 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,524.784 -2019,geoId/56,dcid:Count_Person_Female_Divorced,29567.961 -2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1375.254 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29567.961 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1375.254 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,34.972 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,34.972 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3668.6 @@ -231,10 +231,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1353.768 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20359.472 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,962.948 -2019,geoId/56,dcid:Count_Person_Separated,6065.137 -2019,geoId/56,dcid:MarginOfError_Count_Person_Separated,466.549 -2019,geoId/56,dcid:Count_Person_Male_Separated,2610.74 -2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,474.68 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6065.137 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,466.549 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2610.74 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,474.68 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,690.206 @@ -247,8 +247,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,160.108 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,218.66 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,87.464 -2019,geoId/56,dcid:Count_Person_Female_Separated,3208.926 -2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,458.418 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3208.926 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,458.418 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.944 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.944 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,790.16 @@ -289,10 +289,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,451.256 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2338.588 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,275.128 -2019,geoId/56,dcid:Count_Person_NeverMarried,125501.681 -2019,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2332.745 -2019,geoId/56,dcid:Count_Person_Male_NeverMarried,72151.36 -2019,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1661.38 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125501.681 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2332.745 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72151.36 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1661.38 2019,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19004.18 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,115.41 2019,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37584.854 @@ -305,8 +305,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,440.297 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1661.816 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,306.124 -2019,geoId/56,dcid:Count_Person_Female_NeverMarried,53405.697 -2019,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1146.045 +2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53405.697 +2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1146.045 2019,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17206.224 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,122.402 2019,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26696.12 @@ -405,10 +405,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,614.0 2018,geoId/56,dcid:Count_Person_InLaborForce_Female,138353.0 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1239.0 -2018,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,250213.002 -2018,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3261.622 -2018,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,126838.884 -2018,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1900.208 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,250213.002 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3261.622 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,126838.884 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1900.208 2018,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,232.932 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,116.466 2018,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,21862.305 @@ -421,8 +421,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,609.195 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,29329.16 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,667.52 -2018,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123346.8 -2018,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1827.36 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123346.8 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1827.36 2018,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,207.876 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,69.292 2018,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25395.686 @@ -463,10 +463,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1800.68 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,76785.915 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1521.883 -2018,geoId/56,dcid:Count_Person_Widowed,25161.084 -2018,geoId/56,dcid:MarginOfError_Count_Person_Widowed,931.892 -2018,geoId/56,dcid:Count_Person_Male_Widowed,6413.202 -2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,475.052 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25161.084 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,931.892 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,6413.202 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,475.052 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.822 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,63.369 @@ -479,8 +479,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,243.678 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4881.24 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,458.92 -2018,geoId/56,dcid:Count_Person_Female_Widowed,18730.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,685.26 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18730.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,685.26 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,34.646 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,51.969 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,170.823 @@ -521,10 +521,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.255 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3735.531 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,415.059 -2018,geoId/56,dcid:Count_Person_Divorced,59641.088 -2018,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1863.784 -2018,geoId/56,dcid:Count_Person_Male_Divorced,29215.698 -2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1187.63 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59641.088 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1863.784 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29215.698 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1187.63 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.822 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2851.605 @@ -537,8 +537,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,527.969 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5882.52 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,542.36 -2018,geoId/56,dcid:Count_Person_Female_Divorced,30151.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1142.1 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30151.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1142.1 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.323 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.323 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3701.165 @@ -579,10 +579,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1125.425 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20614.597 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,968.471 -2018,geoId/56,dcid:Count_Person_Separated,6057.298 -2018,geoId/56,dcid:MarginOfError_Count_Person_Separated,465.946 -2018,geoId/56,dcid:Count_Person_Male_Separated,2850.312 -2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,475.052 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6057.298 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,465.946 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2850.312 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,475.052 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.411 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,633.69 @@ -595,8 +595,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,121.839 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,292.04 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,125.16 -2018,geoId/56,dcid:Count_Person_Female_Separated,3197.88 -2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,456.84 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3197.88 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,456.84 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.292 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.292 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,797.174 @@ -637,10 +637,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.17 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2213.648 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,276.706 -2018,geoId/56,dcid:Count_Person_NeverMarried,125339.474 -2018,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2329.73 -2018,geoId/56,dcid:Count_Person_Male_NeverMarried,72207.904 -2018,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1425.156 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125339.474 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2329.73 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72207.904 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1425.156 2018,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19178.068 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,116.466 2018,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37958.031 @@ -653,8 +653,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,406.13 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1376.76 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,250.32 -2018,geoId/56,dcid:Count_Person_Female_NeverMarried,52993.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1370.52 +2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,52993.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1370.52 2018,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17011.186 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,103.938 2018,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26876.152 @@ -753,10 +753,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,584.0 2017,geoId/56,dcid:Count_Person_InLaborForce_Female,140166.0 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1497.0 -2017,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,250192.472 -2017,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2800.662 -2017,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,127147.536 -2017,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1666.728 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,250192.472 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2800.662 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,127147.536 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1666.728 2017,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,212.102 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,96.41 2017,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22789.026 @@ -769,8 +769,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,695.334 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,28307.776 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,601.44 -2017,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123026.074 -2017,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1600.711 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123026.074 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1600.711 2017,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,192.962 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,70.168 2017,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25319.904 @@ -811,10 +811,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1577.219 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77932.296 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1401.66 -2017,geoId/56,dcid:Count_Person_Widowed,25205.958 -2017,geoId/56,dcid:MarginOfError_Count_Person_Widowed,933.554 -2017,geoId/56,dcid:Count_Person_Male_Widowed,5952.6 -2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,476.208 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25205.958 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,933.554 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5952.6 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,476.208 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.564 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,64.926 @@ -827,8 +827,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,204.51 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4651.136 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,441.056 -2017,geoId/56,dcid:Count_Person_Female_Widowed,18979.859 -2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,686.019 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18979.859 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,686.019 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.084 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,115.616 @@ -869,10 +869,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.951 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3924.648 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,420.498 -2017,geoId/56,dcid:Count_Person_Divorced,59280.679 -2017,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1867.108 -2017,geoId/56,dcid:Count_Person_Male_Divorced,29048.688 -2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1190.52 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59280.679 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1867.108 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29048.688 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1190.52 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.564 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2791.818 @@ -885,8 +885,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,613.53 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5613.44 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,481.152 -2017,geoId/56,dcid:Count_Person_Female_Divorced,30184.836 -2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1372.038 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30184.836 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1372.038 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.542 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.542 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3988.752 @@ -927,10 +927,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1351.902 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20604.402 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1121.328 -2017,geoId/56,dcid:Count_Person_Separated,6534.878 -2017,geoId/56,dcid:MarginOfError_Count_Person_Separated,933.554 -2017,geoId/56,dcid:Count_Person_Male_Separated,3095.352 -2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,476.208 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6534.878 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,933.554 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3095.352 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,476.208 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.282 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,584.334 @@ -943,8 +943,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,122.706 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,320.768 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,120.288 -2017,geoId/56,dcid:Count_Person_Female_Separated,3201.422 -2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,457.346 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3201.422 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,457.346 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,122.794 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,87.71 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,809.312 @@ -985,10 +985,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.634 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2382.822 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,420.498 -2017,geoId/56,dcid:Count_Person_NeverMarried,126029.79 -2017,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1867.108 -2017,geoId/56,dcid:Count_Person_Male_NeverMarried,72621.72 -2017,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1190.52 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,126029.79 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1867.108 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72621.72 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1190.52 2017,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19069.898 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,96.41 2017,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38695.896 @@ -1001,8 +1001,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,368.118 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1283.072 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,240.576 -2017,geoId/56,dcid:Count_Person_Female_NeverMarried,53280.809 -2017,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,914.692 +2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53280.809 +2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,914.692 2017,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17208.702 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,140.336 2017,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,27458.8 @@ -1101,10 +1101,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,560.0 2016,geoId/56,dcid:Count_Person_InLaborForce_Female,140801.0 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1525.0 -2016,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,248006.164 -2016,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2797.062 -2016,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125649.667 -2016,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1662.661 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,248006.164 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2797.062 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125649.667 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1662.661 2016,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,214.06 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,116.76 2016,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22463.64 @@ -1117,8 +1117,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,653.84 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,27168.732 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,611.392 -2016,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,122101.236 -2016,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1600.578 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,122101.236 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1600.578 2016,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,244.16 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,87.2 2016,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25386.48 @@ -1159,10 +1159,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1576.722 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77299.749 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1408.01 -2016,geoId/56,dcid:Count_Person_Widowed,25173.558 -2016,geoId/56,dcid:MarginOfError_Count_Person_Widowed,932.354 -2016,geoId/56,dcid:Count_Person_Male_Widowed,5938.075 -2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,475.046 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25173.558 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,932.354 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5938.075 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,475.046 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.92 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,65.112 @@ -1175,8 +1175,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,204.325 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4356.168 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,420.332 -2016,geoId/56,dcid:Count_Person_Female_Widowed,19206.936 -2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,685.962 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19206.936 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,685.962 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.88 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,176.295 @@ -1217,10 +1217,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.738 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4364.831 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,422.403 -2016,geoId/56,dcid:Count_Person_Divorced,59670.656 -2016,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1864.708 -2016,geoId/56,dcid:Count_Person_Male_Divorced,29452.852 -2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1187.615 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59670.656 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1864.708 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29452.852 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1187.615 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.92 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2995.152 @@ -1233,8 +1233,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,572.11 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5082.196 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,420.332 -2016,geoId/56,dcid:Count_Person_Female_Divorced,30182.328 -2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1143.27 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30182.328 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1143.27 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.44 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.44 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4348.61 @@ -1275,10 +1275,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1126.23 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20697.747 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,985.607 -2016,geoId/56,dcid:Count_Person_Separated,6992.655 -2016,geoId/56,dcid:MarginOfError_Count_Person_Separated,932.354 -2016,geoId/56,dcid:Count_Person_Male_Separated,3562.845 -2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,475.046 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6992.655 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,932.354 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3562.845 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,475.046 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.46 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,586.008 @@ -1291,8 +1291,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,163.46 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,382.12 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,191.06 -2016,geoId/56,dcid:Count_Person_Female_Separated,3429.81 -2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,457.308 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3429.81 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,457.308 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.76 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.76 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,881.475 @@ -1333,10 +1333,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.492 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2534.418 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,422.403 -2016,geoId/56,dcid:Count_Person_NeverMarried,126800.144 -2016,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2330.885 -2016,geoId/56,dcid:Count_Person_Male_NeverMarried,72919.561 -2016,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1662.661 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,126800.144 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2330.885 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72919.561 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1662.661 2016,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19245.94 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,116.76 2016,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38936.976 @@ -1349,8 +1349,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,367.785 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1222.784 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,191.06 -2016,geoId/56,dcid:Count_Person_Female_NeverMarried,53733.69 -2016,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1371.924 +2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53733.69 +2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1371.924 2016,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17126.08 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,104.64 2016,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,27972.14 @@ -1449,10 +1449,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,552.0 2015,geoId/56,dcid:Count_Person_InLaborForce_Female,141128.0 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1349.0 -2015,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247220.857 -2015,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3710.632 -2015,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125085.83 -2015,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,2124.099 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247220.857 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3710.632 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125085.83 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,2124.099 2015,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,176.445 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,78.42 2015,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22588.659 @@ -1465,8 +1465,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,730.278 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,26273.62 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,513.73 -2015,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,122110.448 -2015,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1822.544 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,122110.448 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1822.544 2015,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,242.62 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,103.98 2015,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26463.15 @@ -1507,10 +1507,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1795.24 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,78184.912 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1270.152 -2015,geoId/56,dcid:Count_Person_Widowed,25046.766 -2015,geoId/56,dcid:MarginOfError_Count_Person_Widowed,927.658 -2015,geoId/56,dcid:Count_Person_Male_Widowed,5900.275 -2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,472.022 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25046.766 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,927.658 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5900.275 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,472.022 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,39.21 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,65.097 @@ -1523,8 +1523,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,243.426 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4293.315 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,366.95 -2015,geoId/56,dcid:Count_Person_Female_Widowed,19364.53 -2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,683.454 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19364.53 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,683.454 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.66 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,235.228 @@ -1565,10 +1565,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,673.215 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4657.224 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,423.384 -2015,geoId/56,dcid:Count_Person_Divorced,58906.283 -2015,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1855.316 -2015,geoId/56,dcid:Count_Person_Male_Divorced,28793.342 -2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1180.055 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58906.283 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1855.316 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28793.342 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1180.055 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,39.21 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3189.753 @@ -1581,8 +1581,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,527.423 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,4660.265 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,403.645 -2015,geoId/56,dcid:Count_Person_Female_Divorced,30071.976 -2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1139.09 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30071.976 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1139.09 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.33 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.33 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4234.104 @@ -1623,10 +1623,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1122.025 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20886.944 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,846.768 -2015,geoId/56,dcid:Count_Person_Separated,6957.435 -2015,geoId/56,dcid:MarginOfError_Count_Person_Separated,463.829 -2015,geoId/56,dcid:Count_Person_Male_Separated,3540.165 -2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,472.022 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6957.435 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,463.829 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3540.165 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,472.022 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.605 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,716.067 @@ -1639,8 +1639,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,121.713 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,293.56 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,146.78 -2015,geoId/56,dcid:Count_Person_Female_Separated,3645.088 -2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,455.636 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3645.088 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,455.636 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.32 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,86.65 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1117.333 @@ -1681,10 +1681,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,448.81 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2681.432 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,423.384 -2015,geoId/56,dcid:Count_Person_NeverMarried,125233.83 -2015,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2319.145 -2015,geoId/56,dcid:Count_Person_Male_NeverMarried,72691.388 -2015,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1652.077 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125233.83 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2319.145 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72691.388 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1652.077 2015,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19428.555 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,78.42 2015,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38537.424 @@ -1697,8 +1697,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,365.139 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1210.935 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,220.17 -2015,geoId/56,dcid:Count_Person_Female_NeverMarried,52853.776 -2015,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1139.09 +2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,52853.776 +2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1139.09 2015,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17000.73 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,138.64 2015,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26757.185 @@ -1801,10 +1801,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,573.0 2014,geoId/56,dcid:Count_Person_InLaborForce_Female,139986.0 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1564.0 -2014,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247171.434 -2014,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2761.692 -2014,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125270.25 -2014,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1639.05 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247171.434 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2761.692 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125270.25 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1639.05 2014,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,98.775 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,59.265 2014,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22989.372 @@ -1817,8 +1817,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,639.872 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,25501.875 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,527.625 -2014,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121659.016 -2014,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1582.924 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121659.016 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1582.924 2014,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,301.036 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,106.248 2014,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26540.642 @@ -1863,10 +1863,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1558.956 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77832.216 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1399.86 -2014,geoId/56,dcid:Count_Person_Widowed,24394.946 -2014,geoId/56,dcid:MarginOfError_Count_Person_Widowed,920.564 -2014,geoId/56,dcid:Count_Person_Male_Widowed,5619.6 -2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,468.3 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,24394.946 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,920.564 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5619.6 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,468.3 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,39.51 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,64.396 @@ -1879,8 +1879,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,159.968 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4185.825 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,351.75 -2014,geoId/56,dcid:Count_Person_Female_Widowed,18768.956 -2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,678.396 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18768.956 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,678.396 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.416 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,231.796 @@ -1925,10 +1925,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,668.124 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4619.538 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,279.972 -2014,geoId/56,dcid:Count_Person_Divorced,58916.096 -2014,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1841.128 -2014,geoId/56,dcid:Count_Person_Male_Divorced,28566.3 -2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1170.75 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58916.096 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1841.128 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28566.3 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1170.75 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,19.755 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3155.404 @@ -1941,8 +1941,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,559.888 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,4045.125 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,386.925 -2014,geoId/56,dcid:Count_Person_Female_Divorced,30301.688 -2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1130.66 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30301.688 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1130.66 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.708 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,35.416 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4404.124 @@ -1987,10 +1987,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1336.248 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21137.886 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1119.888 -2014,geoId/56,dcid:Count_Person_Separated,7364.512 -2014,geoId/56,dcid:MarginOfError_Count_Person_Separated,460.282 -2014,geoId/56,dcid:Count_Person_Male_Separated,3746.4 -2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,468.3 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,7364.512 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,460.282 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3746.4 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,468.3 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.755 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,901.544 @@ -2003,8 +2003,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,159.968 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,281.4 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,140.7 -2014,geoId/56,dcid:Count_Person_Female_Separated,3618.112 -2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,452.264 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3618.112 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,452.264 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,53.124 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,70.832 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1158.98 @@ -2049,10 +2049,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,445.416 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2799.72 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,419.958 -2014,geoId/56,dcid:Count_Person_NeverMarried,122435.012 -2014,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2301.41 -2014,geoId/56,dcid:Count_Person_Male_NeverMarried,70947.45 -2014,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1404.9 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,122435.012 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2301.41 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,70947.45 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1404.9 2014,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19636.47 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,59.265 2014,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37349.68 @@ -2065,8 +2065,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,319.936 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1160.775 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,211.05 -2014,geoId/56,dcid:Count_Person_Female_NeverMarried,51558.096 -2014,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1130.66 +2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,51558.096 +2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1130.66 2014,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17318.424 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,123.956 2014,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,25613.458 @@ -2173,10 +2173,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,428.0 2013,geoId/56,dcid:Count_Person_InLaborForce_Female,139233.0 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1463.0 -2013,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247925.28 -2013,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2734.47 -2013,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125943.42 -2013,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1623.58 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247925.28 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2734.47 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125943.42 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1623.58 2013,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,121.086 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.543 2013,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22652.389 @@ -2189,8 +2189,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,584.73 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,24746.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,506.4 -2013,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121973.725 -2013,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1566.635 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121973.725 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1566.635 2013,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,395.714 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,143.896 2013,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26830.083 @@ -2235,10 +2235,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1541.365 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77970.48 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1253.097 -2013,geoId/56,dcid:Count_Person_Widowed,24610.23 -2013,geoId/56,dcid:MarginOfError_Count_Person_Widowed,911.49 -2013,geoId/56,dcid:Count_Person_Male_Widowed,5798.5 -2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,463.88 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,24610.23 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,911.49 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5798.5 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,463.88 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,62.749 @@ -2251,8 +2251,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,194.91 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4084.96 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,337.6 -2013,geoId/56,dcid:Count_Person_Female_Widowed,18799.62 -2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,671.415 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18799.62 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,671.415 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.974 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,228.828 @@ -2297,10 +2297,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,660.585 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4455.456 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,417.699 -2013,geoId/56,dcid:Count_Person_Divorced,56512.38 -2013,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1822.98 -2013,geoId/56,dcid:Count_Person_Male_Divorced,27136.98 -2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,927.76 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,56512.38 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1822.98 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,27136.98 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,927.76 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3200.199 @@ -2313,8 +2313,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,506.766 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3578.56 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,337.6 -2013,geoId/56,dcid:Count_Person_Female_Divorced,29318.455 -2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1119.025 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29318.455 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1119.025 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,35.974 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,35.974 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4404.939 @@ -2359,10 +2359,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1100.975 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20745.717 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,974.631 -2013,geoId/56,dcid:Count_Person_Separated,6836.175 -2013,geoId/56,dcid:MarginOfError_Count_Person_Separated,911.49 -2013,geoId/56,dcid:Count_Person_Male_Separated,3479.1 -2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,463.88 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6836.175 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,911.49 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3479.1 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,463.88 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,815.737 @@ -2375,8 +2375,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,155.928 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,270.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,101.28 -2013,geoId/56,dcid:Count_Person_Female_Separated,3580.88 -2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,447.61 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3580.88 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,447.61 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,71.948 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,53.961 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1144.14 @@ -2421,10 +2421,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,440.39 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2784.66 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,417.699 -2013,geoId/56,dcid:Count_Person_NeverMarried,120316.68 -2013,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1822.98 -2013,geoId/56,dcid:Count_Person_Male_NeverMarried,69813.94 -2013,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1391.64 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,120316.68 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1822.98 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,69813.94 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1391.64 2013,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20059.914 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,60.543 2013,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,35955.177 @@ -2437,8 +2437,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,311.856 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1114.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,202.56 -2013,geoId/56,dcid:Count_Person_Female_NeverMarried,50356.125 -2013,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1119.025 +2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,50356.125 +2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1119.025 2013,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17501.351 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,143.896 2013,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,24599.01 @@ -2545,10 +2545,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,403.0 2012,geoId/56,dcid:Count_Person_InLaborForce_Female,138145.0 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1303.0 -2012,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,246649.868 -2012,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3150.637 -2012,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125320.476 -2012,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1600.809 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,246649.868 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3150.637 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125320.476 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1600.809 2012,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,102.415 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,61.449 2012,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22360.265 @@ -2561,8 +2561,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,566.355 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,23760.297 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,488.895 -2012,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121329.392 -2012,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1771.232 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121329.392 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1771.232 2012,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,360.44 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,126.154 2012,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26990.072 @@ -2607,10 +2607,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1959.786 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77637.49 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1519.595 -2012,geoId/56,dcid:Count_Person_Widowed,23854.823 -2012,geoId/56,dcid:MarginOfError_Count_Person_Widowed,900.182 -2012,geoId/56,dcid:Count_Person_Male_Widowed,5259.801 -2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,457.374 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23854.823 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,900.182 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5259.801 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,457.374 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,40.966 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -2623,8 +2623,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,151.028 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,3911.16 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,358.523 -2012,geoId/56,dcid:Count_Person_Female_Widowed,18819.34 -2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,664.212 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18819.34 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,664.212 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,36.044 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,223.984 @@ -2669,10 +2669,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,653.262 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4696.93 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,414.435 -2012,geoId/56,dcid:Count_Person_Divorced,56261.375 -2012,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1800.364 -2012,geoId/56,dcid:Count_Person_Male_Divorced,26985.066 -2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1143.435 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,56261.375 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1800.364 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26985.066 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1143.435 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.483 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3491.877 @@ -2685,8 +2685,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,528.598 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3585.23 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,325.93 -2012,geoId/56,dcid:Count_Person_Female_Divorced,29225.328 -2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1107.02 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29225.328 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1107.02 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,54.066 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,54.066 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4255.696 @@ -2731,10 +2731,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1306.524 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21136.185 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1105.16 -2012,geoId/56,dcid:Count_Person_Separated,6301.274 -2012,geoId/56,dcid:MarginOfError_Count_Person_Separated,900.182 -2012,geoId/56,dcid:Count_Person_Male_Separated,2744.244 -2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,457.374 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6301.274 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,900.182 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2744.244 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,457.374 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,40.966 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,796.393 @@ -2747,8 +2747,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,113.271 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,228.151 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,97.779 -2012,geoId/56,dcid:Count_Person_Female_Separated,3763.868 -2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,664.212 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3763.868 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,664.212 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,54.066 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,36.044 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1287.908 @@ -2793,10 +2793,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,653.262 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2762.9 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,552.58 -2012,geoId/56,dcid:Count_Person_NeverMarried,117023.66 -2012,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2250.455 -2012,geoId/56,dcid:Count_Person_Male_NeverMarried,68148.726 -2012,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1372.122 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,117023.66 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2250.455 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,68148.726 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1372.122 2012,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20380.585 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,61.449 2012,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,34612.465 @@ -2809,8 +2809,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,302.056 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1108.162 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,228.151 -2012,geoId/56,dcid:Count_Person_Female_NeverMarried,48708.88 -2012,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1107.02 +2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,48708.88 +2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1107.02 2012,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17553.428 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,144.176 2012,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,23182.344 @@ -2917,10 +2917,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,450.0 2011,geoId/56,dcid:Count_Person_InLaborForce_Female,137250.0 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1296.0 -2011,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,244501.291 -2011,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2662.446 -2011,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,124568.227 -2011,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1802.072 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,244501.291 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2662.446 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,124568.227 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1802.072 2011,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,100.92 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.552 2011,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22796.58 @@ -2933,8 +2933,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,548.595 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,22826.272 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,504.448 -2011,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,120165.1 -2011,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1529.374 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,120165.1 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1529.374 2011,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,363.92 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,127.372 2011,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26998.179 @@ -2979,10 +2979,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1505.406 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77409.0 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1372.5 -2011,geoId/56,dcid:Count_Person_Widowed,23962.014 -2011,geoId/56,dcid:MarginOfError_Count_Person_Widowed,887.482 -2011,geoId/56,dcid:Count_Person_Male_Widowed,5406.216 -2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,450.518 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23962.014 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,887.482 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5406.216 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,450.518 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,40.368 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -2995,8 +2995,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,146.292 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4067.112 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,346.808 -2011,geoId/56,dcid:Count_Person_Female_Widowed,18570.97 -2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,655.446 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18570.97 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,655.446 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,18.196 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,276.055 @@ -3041,10 +3041,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,645.174 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4529.25 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,411.75 -2011,geoId/56,dcid:Count_Person_Divorced,55467.625 -2011,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1774.964 -2011,geoId/56,dcid:Count_Person_Male_Divorced,26355.303 -2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1126.295 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,55467.625 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1774.964 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26355.303 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1126.295 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.184 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3299.505 @@ -3057,8 +3057,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,438.876 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3468.08 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,378.336 -2011,geoId/56,dcid:Count_Person_Female_Divorced,29058.106 -2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1092.41 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29058.106 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1092.41 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,36.392 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,36.392 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4527.302 @@ -3103,10 +3103,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1075.29 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21548.25 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,960.75 -2011,geoId/56,dcid:Count_Person_Separated,5768.633 -2011,geoId/56,dcid:MarginOfError_Count_Person_Separated,443.741 -2011,geoId/56,dcid:Count_Person_Male_Separated,2477.849 -2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,450.518 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,5768.633 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,443.741 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2477.849 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,450.518 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,20.184 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,539.919 @@ -3119,8 +3119,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,146.292 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,126.112 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,63.056 -2011,geoId/56,dcid:Count_Person_Female_Separated,3277.23 -2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,436.964 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3277.23 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,436.964 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,72.784 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,54.588 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1104.22 @@ -3165,10 +3165,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,430.116 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2470.5 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,411.75 -2011,geoId/56,dcid:Count_Person_NeverMarried,114041.437 -2011,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1774.964 -2011,geoId/56,dcid:Count_Person_Male_NeverMarried,66451.405 -2011,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1351.554 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,114041.437 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1774.964 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,66451.405 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1351.554 2011,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20083.08 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,60.552 2011,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,33295.005 @@ -3181,8 +3181,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,292.584 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1008.896 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,189.168 -2011,geoId/56,dcid:Count_Person_Female_NeverMarried,47410.594 -2011,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1092.41 +2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,47410.594 +2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1092.41 2011,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17722.904 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,145.568 2011,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,22250.033 @@ -3289,10 +3289,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,443.0 2010,geoId/56,dcid:Count_Person_InLaborForce_Female,135160.0 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1156.0 -2010,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,243888.408 -2010,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3059.532 -2010,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,123425.63 -2010,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1772.72 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,243888.408 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3059.532 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,123425.63 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1772.72 2010,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,121.878 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.939 2010,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22138.8 @@ -3305,8 +3305,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,453.323 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,22258.434 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,490.544 -2010,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,120456.674 -2010,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1508.402 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,120456.674 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1508.402 2010,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,387.387 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,129.129 2010,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26746.304 @@ -3351,10 +3351,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1482.432 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77581.84 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1216.44 -2010,geoId/56,dcid:Count_Person_Widowed,23602.104 -2010,geoId/56,dcid:MarginOfError_Count_Person_Widowed,874.152 -2010,geoId/56,dcid:Count_Person_Male_Widowed,5318.16 -2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,443.18 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23602.104 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,874.152 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5318.16 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,443.18 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,20.313 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -3367,8 +3367,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,174.355 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4016.329 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,367.908 -2010,geoId/56,dcid:Count_Person_Female_Widowed,18316.31 -2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,646.458 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18316.31 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,646.458 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,36.894 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,161.772 @@ -3413,9 +3413,9 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,635.328 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4325.12 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,405.48 -2010,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1748.304 -2010,geoId/56,dcid:Count_Person_Male_Divorced,26369.21 -2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1107.95 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1748.304 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26369.21 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1107.95 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.313 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3495.6 @@ -3428,8 +3428,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,488.194 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3219.195 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,337.249 -2010,geoId/56,dcid:Count_Person_Female_Divorced,27582.208 -2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,861.944 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,27582.208 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,861.944 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,36.894 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4583.54 2010,geoId/56,dcid:Count_Person_35To44Years_Female_Divorced,5679.045 @@ -3440,7 +3440,7 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Female_Divorced,430.651 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Female_Divorced,3749.865 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Female_Divorced,357.13 -2010,geoId/56,dcid:Count_Person_Divorced,54197.424 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,54197.424 2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced_OneRace,52736.373 2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced_OneRace,1715.004 2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced_WhiteAlone,49682.283 @@ -3473,10 +3473,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1058.88 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20679.48 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,810.96 -2010,geoId/56,dcid:Count_Person_Separated,5681.988 -2010,geoId/56,dcid:MarginOfError_Count_Person_Separated,437.076 -2010,geoId/56,dcid:Count_Person_Male_Separated,2659.08 -2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,443.18 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,5681.988 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,437.076 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2659.08 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,443.18 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,40.626 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,40.626 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,873.9 @@ -3491,8 +3491,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,104.613 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,153.295 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,61.318 -2010,geoId/56,dcid:Count_Person_Female_Separated,3016.804 -2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,430.972 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3016.804 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,430.972 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,92.235 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,73.788 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1024.556 @@ -3537,10 +3537,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,423.552 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2297.72 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,405.48 -2010,geoId/56,dcid:Count_Person_NeverMarried,110143.152 -2010,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1748.304 -2010,geoId/56,dcid:Count_Person_Male_NeverMarried,63817.92 -2010,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1107.95 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,110143.152 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1748.304 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,63817.92 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1107.95 2010,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20130.183 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,81.252 2010,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,31751.7 @@ -3553,8 +3553,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,244.097 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1042.406 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,183.954 -2010,geoId/56,dcid:Count_Person_Female_NeverMarried,46114.004 -2010,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1077.43 +2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,46114.004 +2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1077.43 2010,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17930.484 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,147.576 2010,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,21407.828 diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf index 0450479f6e..0d60147d67 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf @@ -464,7 +464,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_MarriedAndNotSeparated +Node: dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -472,7 +472,7 @@ populationType: dcs:Person maritalStatus: dcs:MarriedAndNotSeparated typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -480,7 +480,7 @@ populationType: dcs:Person maritalStatus: dcs:MarriedAndNotSeparated typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Male_MarriedAndNotSeparated +Node: dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -489,7 +489,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -606,7 +606,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Female_MarriedAndNotSeparated +Node: dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -615,7 +615,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -988,7 +988,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Widowed +Node: dcid:Count_Person_15OrMoreYears_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -996,7 +996,7 @@ populationType: dcs:Person maritalStatus: dcs:Widowed typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Widowed +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1004,7 +1004,7 @@ populationType: dcs:Person maritalStatus: dcs:Widowed typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Male_Widowed +Node: dcid:Count_Person_15OrMoreYears_Male_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1013,7 +1013,7 @@ maritalStatus: dcs:Widowed gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Male_Widowed +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1130,7 +1130,7 @@ maritalStatus: dcs:Widowed gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Female_Widowed +Node: dcid:Count_Person_15OrMoreYears_Female_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1139,7 +1139,7 @@ maritalStatus: dcs:Widowed gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Female_Widowed +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1512,7 +1512,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Divorced +Node: dcid:Count_Person_15OrMoreYears_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1520,7 +1520,7 @@ populationType: dcs:Person maritalStatus: dcs:Divorced typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Divorced +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1528,7 +1528,7 @@ populationType: dcs:Person maritalStatus: dcs:Divorced typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Male_Divorced +Node: dcid:Count_Person_15OrMoreYears_Male_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1537,7 +1537,7 @@ maritalStatus: dcs:Divorced gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Male_Divorced +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1654,7 +1654,7 @@ maritalStatus: dcs:Divorced gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Female_Divorced +Node: dcid:Count_Person_15OrMoreYears_Female_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1663,7 +1663,7 @@ maritalStatus: dcs:Divorced gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Female_Divorced +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2036,7 +2036,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Separated +Node: dcid:Count_Person_15OrMoreYears_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2044,7 +2044,7 @@ populationType: dcs:Person maritalStatus: dcs:Separated typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Separated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2052,7 +2052,7 @@ populationType: dcs:Person maritalStatus: dcs:Separated typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Male_Separated +Node: dcid:Count_Person_15OrMoreYears_Male_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2061,7 +2061,7 @@ maritalStatus: dcs:Separated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Male_Separated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2178,7 +2178,7 @@ maritalStatus: dcs:Separated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Female_Separated +Node: dcid:Count_Person_15OrMoreYears_Female_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2187,7 +2187,7 @@ maritalStatus: dcs:Separated gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Female_Separated +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2560,7 +2560,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_NeverMarried +Node: dcid:Count_Person_15OrMoreYears_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2568,7 +2568,7 @@ populationType: dcs:Person maritalStatus: dcs:NeverMarried typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_NeverMarried +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2576,7 +2576,7 @@ populationType: dcs:Person maritalStatus: dcs:NeverMarried typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Male_NeverMarried +Node: dcid:Count_Person_15OrMoreYears_Male_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2585,7 +2585,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Male_NeverMarried +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2702,7 +2702,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_Female_NeverMarried +Node: dcid:Count_Person_15OrMoreYears_Female_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2711,7 +2711,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_Female_NeverMarried +Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json index 4664e1302f..091a0285ec 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json @@ -525,7 +525,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -534,7 +534,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -543,7 +543,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -553,7 +553,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -683,7 +683,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -693,7 +693,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1107,7 +1107,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1116,7 +1116,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1125,7 +1125,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1135,7 +1135,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1265,7 +1265,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1275,7 +1275,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1689,7 +1689,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1698,7 +1698,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1707,7 +1707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1717,7 +1717,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1847,7 +1847,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1857,7 +1857,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2271,7 +2271,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2280,7 +2280,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2289,7 +2289,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2299,7 +2299,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2429,7 +2429,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2439,7 +2439,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2853,7 +2853,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2862,7 +2862,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2871,7 +2871,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2881,7 +2881,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3011,7 +3011,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3021,7 +3021,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3961,7 +3961,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3970,7 +3970,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3979,7 +3979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3989,7 +3989,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4119,7 +4119,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4129,7 +4129,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4543,7 +4543,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4552,7 +4552,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4561,7 +4561,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4571,7 +4571,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4701,7 +4701,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4711,7 +4711,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5125,7 +5125,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5134,7 +5134,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5143,7 +5143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5153,7 +5153,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5283,7 +5283,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5293,7 +5293,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5707,7 +5707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5716,7 +5716,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5725,7 +5725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5735,7 +5735,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5865,7 +5865,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5875,7 +5875,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6289,7 +6289,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6298,7 +6298,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6307,7 +6307,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6317,7 +6317,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6447,7 +6447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6457,7 +6457,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7397,7 +7397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7406,7 +7406,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7415,7 +7415,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7425,7 +7425,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7555,7 +7555,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7565,7 +7565,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7979,7 +7979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7988,7 +7988,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7997,7 +7997,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8007,7 +8007,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8137,7 +8137,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8147,7 +8147,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8561,7 +8561,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8570,7 +8570,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8579,7 +8579,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8589,7 +8589,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8719,7 +8719,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8729,7 +8729,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9143,7 +9143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9152,7 +9152,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9161,7 +9161,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9171,7 +9171,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9301,7 +9301,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9311,7 +9311,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9725,7 +9725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9734,7 +9734,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9743,7 +9743,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9753,7 +9753,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9883,7 +9883,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9893,7 +9893,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10833,7 +10833,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10842,7 +10842,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10851,7 +10851,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10861,7 +10861,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10991,7 +10991,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11001,7 +11001,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11415,7 +11415,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11424,7 +11424,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11433,7 +11433,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11443,7 +11443,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11573,7 +11573,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11583,7 +11583,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11997,7 +11997,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12006,7 +12006,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12015,7 +12015,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12025,7 +12025,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12155,7 +12155,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12165,7 +12165,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12579,7 +12579,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12588,7 +12588,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12597,7 +12597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12607,7 +12607,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12737,7 +12737,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12747,7 +12747,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13161,7 +13161,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13170,7 +13170,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13179,7 +13179,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13189,7 +13189,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13319,7 +13319,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13329,7 +13329,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14269,7 +14269,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14278,7 +14278,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14287,7 +14287,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14297,7 +14297,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14427,7 +14427,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14437,7 +14437,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14851,7 +14851,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14860,7 +14860,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14869,7 +14869,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14879,7 +14879,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15009,7 +15009,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15019,7 +15019,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15433,7 +15433,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15442,7 +15442,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15451,7 +15451,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15461,7 +15461,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15591,7 +15591,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15601,7 +15601,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16015,7 +16015,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16024,7 +16024,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16033,7 +16033,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16043,7 +16043,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16173,7 +16173,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16183,7 +16183,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16597,7 +16597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16606,7 +16606,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16615,7 +16615,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16625,7 +16625,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16755,7 +16755,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16765,7 +16765,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17741,7 +17741,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17750,7 +17750,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17759,7 +17759,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17769,7 +17769,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17899,7 +17899,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17909,7 +17909,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18363,7 +18363,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18372,7 +18372,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18381,7 +18381,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18391,7 +18391,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18521,7 +18521,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18531,7 +18531,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18985,7 +18985,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18994,7 +18994,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19003,7 +19003,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19013,7 +19013,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19143,7 +19143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19153,7 +19153,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19607,7 +19607,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19616,7 +19616,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19625,7 +19625,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19635,7 +19635,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19765,7 +19765,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19775,7 +19775,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20229,7 +20229,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20238,7 +20238,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20247,7 +20247,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20257,7 +20257,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20387,7 +20387,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20397,7 +20397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21413,7 +21413,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21422,7 +21422,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21431,7 +21431,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21441,7 +21441,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21571,7 +21571,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21581,7 +21581,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22035,7 +22035,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22044,7 +22044,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22053,7 +22053,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22063,7 +22063,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22193,7 +22193,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22203,7 +22203,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22657,7 +22657,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22666,7 +22666,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22675,7 +22675,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22685,7 +22685,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22815,7 +22815,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22825,7 +22825,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23279,7 +23279,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23288,7 +23288,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23297,7 +23297,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23307,7 +23307,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23437,7 +23437,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23447,7 +23447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23901,7 +23901,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23910,7 +23910,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23919,7 +23919,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23929,7 +23929,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -24059,7 +24059,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -24069,7 +24069,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25085,7 +25085,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25094,7 +25094,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25103,7 +25103,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25113,7 +25113,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25243,7 +25243,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25253,7 +25253,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25707,7 +25707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25716,7 +25716,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25725,7 +25725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25735,7 +25735,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25865,7 +25865,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25875,7 +25875,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26329,7 +26329,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26338,7 +26338,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26347,7 +26347,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26357,7 +26357,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26487,7 +26487,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26497,7 +26497,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26951,7 +26951,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26960,7 +26960,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26969,7 +26969,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26979,7 +26979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27109,7 +27109,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27119,7 +27119,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27573,7 +27573,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27582,7 +27582,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27591,7 +27591,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27601,7 +27601,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27731,7 +27731,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27741,7 +27741,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28757,7 +28757,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28766,7 +28766,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28775,7 +28775,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28785,7 +28785,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28915,7 +28915,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28925,7 +28925,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29379,7 +29379,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29388,7 +29388,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29397,7 +29397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29407,7 +29407,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29537,7 +29537,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29547,7 +29547,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30001,7 +30001,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30010,7 +30010,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30019,7 +30019,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30029,7 +30029,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30159,7 +30159,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30169,7 +30169,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30623,7 +30623,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30632,7 +30632,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30641,7 +30641,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30651,7 +30651,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30781,7 +30781,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30791,7 +30791,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31245,7 +31245,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31254,7 +31254,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31263,7 +31263,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31273,7 +31273,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31403,7 +31403,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31413,7 +31413,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32429,7 +32429,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32438,7 +32438,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32447,7 +32447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32457,7 +32457,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32587,7 +32587,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32597,7 +32597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33051,7 +33051,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33060,7 +33060,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33069,7 +33069,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33079,7 +33079,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33209,7 +33209,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Widowed", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33219,7 +33219,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33673,7 +33673,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33682,7 +33682,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33692,7 +33692,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33822,7 +33822,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33832,7 +33832,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33942,7 +33942,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Divorced", + "Node": "dcid:Count_Person_15OrMoreYears_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34275,7 +34275,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34284,7 +34284,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34293,7 +34293,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34303,7 +34303,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34453,7 +34453,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_Separated", + "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34463,7 +34463,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34917,7 +34917,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34926,7 +34926,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34935,7 +34935,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_Male_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34945,7 +34945,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -35075,7 +35075,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_Female_NeverMarried", + "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -35085,7 +35085,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", From 470c4ee475d66c190f24a6daf059a23076ef4521 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 20:10:29 +0000 Subject: [PATCH 05/16] fixed linting errors --- .../us_census/acs5yr/subject_tables/s1201/generate_col_map.py | 2 ++ scripts/us_census/acs5yr/subject_tables/s1201/process.py | 3 +-- scripts/us_census/api_utils/census_api_config_fetcher.py | 1 + scripts/us_census/api_utils/census_api_data_downloader.py | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index 95b61b9bed..71fe4bfa25 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -36,6 +36,8 @@ # to avoid circular and conflicting name import issues. _COMMON_COL_MAP_PATH = os.path.abspath(os.path.join(_SCRIPT_PATH, '../common/generate_col_map.py')) _spec = importlib.util.spec_from_file_location("common_generate_col_map", _COMMON_COL_MAP_PATH) +if _spec is None or _spec.loader is None: + raise ImportError(f"Failed to load module spec from {_COMMON_COL_MAP_PATH}") _common_generate_col_map = importlib.util.module_from_spec(_spec) _spec.loader.exec_module(_common_generate_col_map) generate_stat_var_map = _common_generate_col_map.generate_stat_var_map diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index fc4a843110..805335836e 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -73,8 +73,7 @@ def main(argv): has_percent = FLAGS.has_percent debug = FLAGS.debug - if not os.path.exists(output_dir): - os.makedirs(output_dir) + os.makedirs(output_dir, exist_ok=True) # TODO: remove the constraint of inputs being only zip file # context: the current implementation of the column map generator accepts diff --git a/scripts/us_census/api_utils/census_api_config_fetcher.py b/scripts/us_census/api_utils/census_api_config_fetcher.py index 6ea9b5d9f8..394f29ead5 100644 --- a/scripts/us_census/api_utils/census_api_config_fetcher.py +++ b/scripts/us_census/api_utils/census_api_config_fetcher.py @@ -29,6 +29,7 @@ CONFIG_PATH_ = os.path.join(module_dir_, 'config_files') path.insert(1, os.path.join(module_dir_, '../../../')) +path.insert(1, module_dir_) from download_utils import download_url_list_iterations, async_save_resp_json from tools.download_utils.requests_wrappers import request_url_json from status_file_utils import get_pending_or_fail_url_list, sync_status_list diff --git a/scripts/us_census/api_utils/census_api_data_downloader.py b/scripts/us_census/api_utils/census_api_data_downloader.py index be77b02ef4..fef7f3a624 100644 --- a/scripts/us_census/api_utils/census_api_data_downloader.py +++ b/scripts/us_census/api_utils/census_api_data_downloader.py @@ -35,6 +35,7 @@ module_dir_ = os.path.dirname(os.path.realpath(__file__)) path.insert(1, os.path.join(module_dir_, '../../../')) +path.insert(1, module_dir_) from download_utils import download_url_list_iterations from tools.download_utils.requests_wrappers import request_url_json from status_file_utils import sync_status_list From b9d0ba07ce7385498e886beee40e3d21f323de7f Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 21:13:48 +0000 Subject: [PATCH 06/16] fixed gemini comments --- .../subject_tables/s1201/generate_col_map.py | 17 +++-------------- .../acs5yr/subject_tables/s1201/process.py | 6 +++--- .../api_utils/census_api_config_fetcher.py | 5 ++--- .../api_utils/census_api_data_downloader.py | 5 ++--- scripts/us_census/api_utils/download_utils.py | 2 +- .../us_census/api_utils/download_utils_test.py | 2 +- .../api_utils/status_file_utils_test.py | 2 +- .../us_census/api_utils/url_list_compiler.py | 2 +- 8 files changed, 14 insertions(+), 27 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index 71fe4bfa25..2666e7f643 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -25,22 +25,11 @@ from collections import OrderedDict import pandas as pd -import importlib.util - -# Allows the following module imports to work when running as a script +# Allows 'scripts' package to be imported when run as a script or module directly _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(os.path.join(_SCRIPT_PATH, - '../common')) # for statvar_dcid_generator +sys.path.append(os.path.abspath(os.path.join(_SCRIPT_PATH, '../../../../..'))) -# Dynamically import generate_stat_var_map from ../common/generate_col_map.py -# to avoid circular and conflicting name import issues. -_COMMON_COL_MAP_PATH = os.path.abspath(os.path.join(_SCRIPT_PATH, '../common/generate_col_map.py')) -_spec = importlib.util.spec_from_file_location("common_generate_col_map", _COMMON_COL_MAP_PATH) -if _spec is None or _spec.loader is None: - raise ImportError(f"Failed to load module spec from {_COMMON_COL_MAP_PATH}") -_common_generate_col_map = importlib.util.module_from_spec(_spec) -_spec.loader.exec_module(_common_generate_col_map) -generate_stat_var_map = _common_generate_col_map.generate_stat_var_map +from scripts.us_census.acs5yr.subject_tables.common.generate_col_map import generate_stat_var_map def process_zip_file(zip_file_path, diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index 805335836e..d22e96068b 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -19,6 +19,7 @@ sys.path.append(_SCRIPT_PATH) sys.path.append(os.path.join(_SCRIPT_PATH, '../common')) # for col_map_generator, data_loader +sys.path.append(os.path.abspath(os.path.join(_SCRIPT_PATH, '../../../../..'))) # TODO: Add unit tests import json @@ -58,9 +59,8 @@ def set_column_map(input_path, spec_path, output_dir): spec_path, write_output=False) os.makedirs(output_dir, exist_ok=True) - f = open(os.path.join(output_dir, 'column_map.json'), 'w') - json.dump(generated_col_map, f, indent=4) - f.close() + with open(os.path.join(output_dir, 'column_map.json'), 'w') as f: + json.dump(generated_col_map, f, indent=4) def main(argv): diff --git a/scripts/us_census/api_utils/census_api_config_fetcher.py b/scripts/us_census/api_utils/census_api_config_fetcher.py index 394f29ead5..8cc5583238 100644 --- a/scripts/us_census/api_utils/census_api_config_fetcher.py +++ b/scripts/us_census/api_utils/census_api_config_fetcher.py @@ -29,10 +29,9 @@ CONFIG_PATH_ = os.path.join(module_dir_, 'config_files') path.insert(1, os.path.join(module_dir_, '../../../')) -path.insert(1, module_dir_) -from download_utils import download_url_list_iterations, async_save_resp_json +from scripts.us_census.api_utils.download_utils import download_url_list_iterations, async_save_resp_json from tools.download_utils.requests_wrappers import request_url_json -from status_file_utils import get_pending_or_fail_url_list, sync_status_list +from scripts.us_census.api_utils.status_file_utils import get_pending_or_fail_url_list, sync_status_list FLAGS = flags.FLAGS diff --git a/scripts/us_census/api_utils/census_api_data_downloader.py b/scripts/us_census/api_utils/census_api_data_downloader.py index fef7f3a624..0ceb1ee086 100644 --- a/scripts/us_census/api_utils/census_api_data_downloader.py +++ b/scripts/us_census/api_utils/census_api_data_downloader.py @@ -35,10 +35,9 @@ module_dir_ = os.path.dirname(os.path.realpath(__file__)) path.insert(1, os.path.join(module_dir_, '../../../')) -path.insert(1, module_dir_) -from download_utils import download_url_list_iterations +from scripts.us_census.api_utils.download_utils import download_url_list_iterations from tools.download_utils.requests_wrappers import request_url_json -from status_file_utils import sync_status_list +from scripts.us_census.api_utils.status_file_utils import sync_status_list FLAGS = flags.FLAGS diff --git a/scripts/us_census/api_utils/download_utils.py b/scripts/us_census/api_utils/download_utils.py index d75b8fdbb6..b09e3b17cc 100644 --- a/scripts/us_census/api_utils/download_utils.py +++ b/scripts/us_census/api_utils/download_utils.py @@ -24,7 +24,7 @@ from typing import Any, Callable, Union from aiolimiter import AsyncLimiter -from status_file_utils import get_pending_or_fail_url_list, url_to_download +from scripts.us_census.api_utils.status_file_utils import get_pending_or_fail_url_list, url_to_download async def async_save_resp_json(response: Any, filename: str): diff --git a/scripts/us_census/api_utils/download_utils_test.py b/scripts/us_census/api_utils/download_utils_test.py index 7f94b0a917..3716364458 100644 --- a/scripts/us_census/api_utils/download_utils_test.py +++ b/scripts/us_census/api_utils/download_utils_test.py @@ -14,7 +14,7 @@ import os import unittest -from download_utils import * +from scripts.us_census.api_utils.download_utils import * class TestCommonUtil(unittest.TestCase): diff --git a/scripts/us_census/api_utils/status_file_utils_test.py b/scripts/us_census/api_utils/status_file_utils_test.py index 4e58792f21..3e6f2bcd41 100644 --- a/scripts/us_census/api_utils/status_file_utils_test.py +++ b/scripts/us_census/api_utils/status_file_utils_test.py @@ -15,7 +15,7 @@ import os import unittest -from status_file_utils import * +from scripts.us_census.api_utils.status_file_utils import * class TestCommonUtil(unittest.TestCase): diff --git a/scripts/us_census/api_utils/url_list_compiler.py b/scripts/us_census/api_utils/url_list_compiler.py index 394ecbb188..8766c24f89 100644 --- a/scripts/us_census/api_utils/url_list_compiler.py +++ b/scripts/us_census/api_utils/url_list_compiler.py @@ -26,7 +26,7 @@ from typing import Any, Union from census_api_helpers import * -from status_file_utils import sync_status_list +from scripts.us_census.api_utils.status_file_utils import sync_status_list FLAGS = flags.FLAGS From d31aa25303cb290d17f72a39e4284ee77620acb3 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 21:50:05 +0000 Subject: [PATCH 07/16] fixing linting errors --- .../subject_tables/common/make_column_map.log | 18 ++++++++++++++++++ .../acs5yr/subject_tables/s1201/process.py | 14 ++++++++------ 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log b/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log index e69de29bb2..aa8ac1a4c3 100644 --- a/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log +++ b/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log @@ -0,0 +1,18 @@ +2026-07-22 21:11:14,027 MainProcess Processing: S1201_2019_21/ACSST5Y2021.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) +2026-07-22 21:16:52,785 MainProcess Completed with 64326273 + observation for 348 + StatVars at 200759 places. + (data_loader.py:357) +2026-07-22 21:17:16,861 MainProcess Processing: S1201_2019_21/ACSST5Y2020.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) +2026-07-22 21:22:57,384 MainProcess Completed with 64121526 + observation for 348 + StatVars at 200569 places. + (data_loader.py:357) +2026-07-22 21:23:22,443 MainProcess Processing: S1201_2019_21/ACSST5Y2019.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) +2026-07-22 21:28:51,575 MainProcess Completed with 60141369 + observation for 348 + StatVars at 187745 places. + (data_loader.py:357) +2026-07-22 21:47:35,970 MainProcess processing of subject table is complete: the summary of the + process is available at S1201_2019_21_output/S1201_summary.json along with the generated + output files. (data_loader.py:459) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index d22e96068b..09a06507dc 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -16,10 +16,12 @@ import os import sys _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(_SCRIPT_PATH) -sys.path.append(os.path.join(_SCRIPT_PATH, - '../common')) # for col_map_generator, data_loader -sys.path.append(os.path.abspath(os.path.join(_SCRIPT_PATH, '../../../../..'))) +_curr = _SCRIPT_PATH +while _curr and _curr != os.path.dirname(_curr): + if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists(os.path.join(_curr, 'WORKSPACE')): + sys.path.append(_curr) + break + _curr = os.path.dirname(_curr) # TODO: Add unit tests import json @@ -29,8 +31,8 @@ from absl import app, flags # TODO: logs from the column map step is empty when invoked from here, needs to be checked -from generate_col_map import process_zip_file -from data_loader import process_subject_tables +from scripts.us_census.acs5yr.subject_tables.s1201.generate_col_map import process_zip_file +from scripts.us_census.acs5yr.subject_tables.common.data_loader import process_subject_tables FLAGS = flags.FLAGS flags.DEFINE_string( From 8ffdabd4bcf5498028c64da69e0256c1c590948d Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 21:53:30 +0000 Subject: [PATCH 08/16] removing log file --- .../subject_tables/common/make_column_map.log | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 scripts/us_census/acs5yr/subject_tables/common/make_column_map.log diff --git a/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log b/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log deleted file mode 100644 index aa8ac1a4c3..0000000000 --- a/scripts/us_census/acs5yr/subject_tables/common/make_column_map.log +++ /dev/null @@ -1,18 +0,0 @@ -2026-07-22 21:11:14,027 MainProcess Processing: S1201_2019_21/ACSST5Y2021.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) -2026-07-22 21:16:52,785 MainProcess Completed with 64326273 - observation for 348 - StatVars at 200759 places. - (data_loader.py:357) -2026-07-22 21:17:16,861 MainProcess Processing: S1201_2019_21/ACSST5Y2020.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) -2026-07-22 21:22:57,384 MainProcess Completed with 64121526 - observation for 348 - StatVars at 200569 places. - (data_loader.py:357) -2026-07-22 21:23:22,443 MainProcess Processing: S1201_2019_21/ACSST5Y2019.S1201_data_with_overlays_1111-11-11T111111.csv (data_loader.py:263) -2026-07-22 21:28:51,575 MainProcess Completed with 60141369 - observation for 348 - StatVars at 187745 places. - (data_loader.py:357) -2026-07-22 21:47:35,970 MainProcess processing of subject table is complete: the summary of the - process is available at S1201_2019_21_output/S1201_summary.json along with the generated - output files. (data_loader.py:459) From eb8e57f52d8b8fcb1703bacd34d8de7c35ee1a82 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 22 Jul 2026 22:02:59 +0000 Subject: [PATCH 09/16] fixed gemini comments --- .../acs5yr/subject_tables/s1201/generate_col_map.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index 2666e7f643..f91eca4815 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -25,9 +25,14 @@ from collections import OrderedDict import pandas as pd -# Allows 'scripts' package to be imported when run as a script or module directly +# Allows the sibling/parent module imports to work when running as a script or module _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) -sys.path.append(os.path.abspath(os.path.join(_SCRIPT_PATH, '../../../../..'))) +_curr = _SCRIPT_PATH +while _curr and _curr != os.path.dirname(_curr): + if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists(os.path.join(_curr, 'WORKSPACE')): + sys.path.append(_curr) + break + _curr = os.path.dirname(_curr) from scripts.us_census.acs5yr.subject_tables.common.generate_col_map import generate_stat_var_map From 4c2427477f83baf54c366b6bdc7bb870b751980a Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Thu, 23 Jul 2026 04:40:31 +0000 Subject: [PATCH 10/16] fixing gemini comments --- .../us_census/acs5yr/subject_tables/s1201/process.py | 1 - scripts/us_census/api_utils/download_utils_test.py | 6 ++++-- scripts/us_census/api_utils/status_file_utils_test.py | 11 +++++++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index 09a06507dc..003d4b40fb 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -60,7 +60,6 @@ def set_column_map(input_path, spec_path, output_dir): generated_col_map = process_zip_file(input_path, spec_path, write_output=False) - os.makedirs(output_dir, exist_ok=True) with open(os.path.join(output_dir, 'column_map.json'), 'w') as f: json.dump(generated_col_map, f, indent=4) diff --git a/scripts/us_census/api_utils/download_utils_test.py b/scripts/us_census/api_utils/download_utils_test.py index 3716364458..68ac396647 100644 --- a/scripts/us_census/api_utils/download_utils_test.py +++ b/scripts/us_census/api_utils/download_utils_test.py @@ -12,9 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +import json import os import unittest -from scripts.us_census.api_utils.download_utils import * + +from scripts.us_census.api_utils.download_utils import async_save_resp_json, download_url_list class TestCommonUtil(unittest.TestCase): @@ -50,4 +52,4 @@ def test_download_url_list(self): if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/scripts/us_census/api_utils/status_file_utils_test.py b/scripts/us_census/api_utils/status_file_utils_test.py index 3e6f2bcd41..72a5e34df6 100644 --- a/scripts/us_census/api_utils/status_file_utils_test.py +++ b/scripts/us_census/api_utils/status_file_utils_test.py @@ -12,10 +12,17 @@ # See the License for the specific language governing permissions and # limitations under the License. +import json import os import unittest -from scripts.us_census.api_utils.status_file_utils import * +from scripts.us_census.api_utils.status_file_utils import ( + get_failed_http_url_list, + get_failed_url_list, + get_pending_or_fail_url_list, + get_pending_url_list, + url_to_download, +) class TestCommonUtil(unittest.TestCase): @@ -108,4 +115,4 @@ def test_get_pending_or_fail_url_list(self): if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main() From f9e149c53ae2535535f82131a27bc44d2b809351 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Thu, 23 Jul 2026 04:51:35 +0000 Subject: [PATCH 11/16] fixed linting errors --- .../us_census/acs5yr/subject_tables/s1201/generate_col_map.py | 3 ++- scripts/us_census/acs5yr/subject_tables/s1201/process.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index f91eca4815..9f21b38191 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -29,7 +29,8 @@ _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) _curr = _SCRIPT_PATH while _curr and _curr != os.path.dirname(_curr): - if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists(os.path.join(_curr, 'WORKSPACE')): + if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists( + os.path.join(_curr, 'WORKSPACE')): sys.path.append(_curr) break _curr = os.path.dirname(_curr) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index 003d4b40fb..e1380d9092 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -15,10 +15,12 @@ # Allows the sibling/parent module imports to work when running as a script or module import os import sys + _SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__)) _curr = _SCRIPT_PATH while _curr and _curr != os.path.dirname(_curr): - if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists(os.path.join(_curr, 'WORKSPACE')): + if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists( + os.path.join(_curr, 'WORKSPACE')): sys.path.append(_curr) break _curr = os.path.dirname(_curr) From f2a9f6a5c94371be034dd2d28716b62cae6ef951 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Thu, 23 Jul 2026 05:17:23 +0000 Subject: [PATCH 12/16] fixed linting errors --- .../us_census/acs5yr/subject_tables/s1201/generate_col_map.py | 2 +- scripts/us_census/acs5yr/subject_tables/s1201/process.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py index 9f21b38191..fb04b5dc26 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/generate_col_map.py @@ -30,7 +30,7 @@ _curr = _SCRIPT_PATH while _curr and _curr != os.path.dirname(_curr): if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists( - os.path.join(_curr, 'WORKSPACE')): + os.path.join(_curr, 'WORKSPACE')): sys.path.append(_curr) break _curr = os.path.dirname(_curr) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/process.py b/scripts/us_census/acs5yr/subject_tables/s1201/process.py index e1380d9092..06de4675f1 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/process.py +++ b/scripts/us_census/acs5yr/subject_tables/s1201/process.py @@ -20,7 +20,7 @@ _curr = _SCRIPT_PATH while _curr and _curr != os.path.dirname(_curr): if os.path.exists(os.path.join(_curr, '.git')) or os.path.exists( - os.path.join(_curr, 'WORKSPACE')): + os.path.join(_curr, 'WORKSPACE')): sys.path.append(_curr) break _curr = os.path.dirname(_curr) From 03fa691af78282afc6ab7641445a576707e1e72a Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Fri, 31 Jul 2026 04:01:14 +0000 Subject: [PATCH 13/16] reverting override removal --- .../subject_tables/s1201/S1201_spec.json | 177 ++++-- .../s1201/testdata/S1201_cleaned.csv | 600 +++++++++--------- .../s1201/testdata/S1201_output.mcf | 60 +- .../s1201/testdata/column_map.json | 600 +++++++++--------- 4 files changed, 770 insertions(+), 667 deletions(-) diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json index 3fc94ec857..4c552968f4 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json +++ b/scripts/us_census/acs5yr/subject_tables/s1201/S1201_spec.json @@ -7,6 +7,7 @@ "statType": "measuredValue", "measuredProperty": "count", "age": "[15 - Years]" + }, "Margin of Error": { "statType": "marginOfError", @@ -27,7 +28,7 @@ "Females 16 years and over": "[16 - Years]", "Males 15 years and over": "[15 - Years]", "Females 15 years and over": "[15 - Years]" - }, + }, "gender": { "Males 15 years and over": "Male", "Males 16 years and over": "Male", @@ -46,6 +47,7 @@ "Hispanic or Latino origin (of any race)": "HispanicOrLatino", "White alone, not Hispanic or Latino": "WhiteAloneNotHispanicOrLatino" }, + "maritalStatus": { "Now married (except separated)": "MarriedAndNotSeparated", "Widowed": "Widowed", @@ -61,7 +63,7 @@ "employmentStatus": { "In labor force": "BLS_InLaborForce" }, - "nativity": { + "nativity":{ "Native": "USC_Native", "Foreign born": "USC_ForeignBorn" } @@ -77,19 +79,20 @@ } } ], - "ignoreColumns": [ + + "ignoreColumns": [ "id", "Geographic Area Name", "PERCENT ALLOCATED", "PERCENT IMPUTED", - "Population 15 years and over.1", - "SUMMARY INDICATOR" - ], - "preprocess": { - "find_and_replace": { + "Population 15 years and over.1" + ], + + "preprocess": { + "find_and_replace":{ "Total!!Estimate!!15 to 19 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Total!!Margin of Error!!15 to 19 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Total!!Estimate!!20 to 34 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Total!!Estimate!!20 to 34 years":"Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Total!!Margin of Error!!20 to 34 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Total!!Estimate!!35 to 44 years": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Total!!Margin of Error!!35 to 44 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -99,9 +102,10 @@ "Total!!Margin of Error!!55 to 64 years": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Total!!Estimate!!65 years and over": "Total!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Total!!Margin of Error!!65 years and over": "Total!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + "Now married (except separated)!!Estimate!!15 to 19 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Now married (except separated)!!Margin of Error!!15 to 19 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Now married (except separated)!!Estimate!!20 to 34 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Now married (except separated)!!Estimate!!20 to 34 years":"Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Now married (except separated)!!Margin of Error!!20 to 34 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Now married (except separated)!!Estimate!!35 to 44 years": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Now married (except separated)!!Margin of Error!!35 to 44 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -111,9 +115,10 @@ "Now married (except separated)!!Margin of Error!!55 to 64 years": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Now married (except separated)!!Estimate!!65 years and over": "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Now married (except separated)!!Margin of Error!!65 years and over": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + "Widowed!!Estimate!!15 to 19 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Widowed!!Margin of Error!!15 to 19 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Widowed!!Estimate!!20 to 34 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Widowed!!Estimate!!20 to 34 years":"Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Widowed!!Margin of Error!!20 to 34 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Widowed!!Estimate!!35 to 44 years": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Widowed!!Margin of Error!!35 to 44 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -123,9 +128,10 @@ "Widowed!!Margin of Error!!55 to 64 years": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Widowed!!Estimate!!65 years and over": "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Widowed!!Margin of Error!!65 years and over": "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + "Divorced!!Estimate!!15 to 19 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Divorced!!Margin of Error!!15 to 19 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Divorced!!Estimate!!20 to 34 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Divorced!!Estimate!!20 to 34 years":"Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Divorced!!Margin of Error!!20 to 34 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Divorced!!Estimate!!35 to 44 years": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Divorced!!Margin of Error!!35 to 44 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -135,9 +141,10 @@ "Divorced!!Margin of Error!!55 to 64 years": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Divorced!!Estimate!!65 years and over": "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Divorced!!Margin of Error!!65 years and over": "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + "Separated!!Estimate!!15 to 19 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Separated!!Margin of Error!!15 to 19 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Separated!!Estimate!!20 to 34 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Separated!!Estimate!!20 to 34 years":"Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Separated!!Margin of Error!!20 to 34 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Separated!!Estimate!!35 to 44 years": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Separated!!Margin of Error!!35 to 44 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -147,9 +154,10 @@ "Separated!!Margin of Error!!55 to 64 years": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Separated!!Estimate!!65 years and over": "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Separated!!Margin of Error!!65 years and over": "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + "Never married!!Estimate!!15 to 19 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "Never married!!Margin of Error!!15 to 19 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", - "Never married!!Estimate!!20 to 34 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", + "Never married!!Estimate!!20 to 34 years":"Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Never married!!Margin of Error!!20 to 34 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "Never married!!Estimate!!35 to 44 years": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "Never married!!Margin of Error!!35 to 44 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", @@ -159,53 +167,104 @@ "Never married!!Margin of Error!!55 to 64 years": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "Never married!!Estimate!!65 years and over": "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Never married!!Margin of Error!!65 years and over": "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", + + "Total!!Estimate!!65 years and over!!Females 15 years and over": "Total!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Total!!Margin of Error!!65 years and over!!Females 15 years and over": "Total!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Total!!Margin of Error!!65 years and over!!Females 15 years and over" : "Total!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over" : "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Widowed!!Estimate!!65 years and over!!Females 15 years and over": "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over" : "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Divorced!!Estimate!!65 years and over!!Females 15 years and over": "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over" : "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Separated!!Estimate!!65 years and over!!Females 15 years and over": "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Separated!!Margin of Error!!65 years and over!!Females 15 years and over" : "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Never married!!Estimate!!65 years and over!!Females 15 years and over": "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over", - "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "Never married!!Margin of Error!!65 years and over!!Females 15 years and over" : "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over", + "15 to 19 years.1": "AGE AND SEX!!Females 15 years and over!!15 to 19 years", - "20 to 34 years.1": "AGE AND SEX!!Females 15 years and over!!20 to 34 years", + "20 to 34 years.1":"AGE AND SEX!!Females 15 years and over!!20 to 34 years", "35 to 44 years.1": "AGE AND SEX!!Females 15 years and over!!35 to 44 years", "45 to 54 years.1": "AGE AND SEX!!Females 15 years and over!!45 to 54 years", "55 to 64 years.1": "AGE AND SEX!!Females 15 years and over!!55 to 64 years", "65 years and over.1": "AGE AND SEX!!Females 15 years and over!!65 years and over", + + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Total!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Now married (except separated)!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Widowed!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Divorced!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Separated!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force": "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Never married!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", + "In labor force.1": "Females 16 years and over!!In labor force" } + }, + + "overwrite_dcids": { + "Count_Person_15OrMoreYears_Separated": "Count_Person_Separated", + "Count_Person_15OrMoreYears_NeverMarried": "Count_Person_NeverMarried", + "Count_Person_15OrMoreYears_Divorced": "Count_Person_Divorced", + "Count_Person_15OrMoreYears_Widowed": "Count_Person_Widowed", + "Count_Person_15OrMoreYears_MarriedAndNotSeparated": "Count_Person_MarriedAndNotSeparated", + "MarginOfError_Count_Person_15OrMoreYears_Separated": "MarginOfError_Count_Person_Separated", + "MarginOfError_Count_Person_15OrMoreYears_NeverMarried": "MarginOfError_Count_Person_NeverMarried", + "MarginOfError_Count_Person_15OrMoreYears_Divorced": "MarginOfError_Count_Person_Divorced", + "MarginOfError_Count_Person_15OrMoreYears_Widowed": "MarginOfError_Count_Person_Widowed", + "MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated": "MarginOfError_Count_Person_MarriedAndNotSeparated", + + "Count_Person_15OrMoreYears_Male_Separated": "Count_Person_Male_Separated", + "Count_Person_15OrMoreYears_Male_NeverMarried": "Count_Person_Male_NeverMarried", + "Count_Person_15OrMoreYears_Male_Divorced": "Count_Person_Male_Divorced", + "Count_Person_15OrMoreYears_Male_Widowed": "Count_Person_Male_Widowed", + "Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated": "Count_Person_Male_MarriedAndNotSeparated", + "MarginOfError_Count_Person_15OrMoreYears_Male_Separated": "MarginOfError_Count_Person_Male_Separated", + "MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried": "MarginOfError_Count_Person_Male_NeverMarried", + "MarginOfError_Count_Person_15OrMoreYears_Male_Divorced": "MarginOfError_Count_Person_Male_Divorced", + "MarginOfError_Count_Person_15OrMoreYears_Male_Widowed": "MarginOfError_Count_Person_Male_Widowed", + "MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated": "MarginOfError_Count_Person_Male_MarriedAndNotSeparated", + + "Count_Person_15OrMoreYears_Female_Separated": "Count_Person_Female_Separated", + "Count_Person_15OrMoreYears_Female_NeverMarried": "Count_Person_Female_NeverMarried", + "Count_Person_15OrMoreYears_Female_Divorced": "Count_Person_Female_Divorced", + "Count_Person_15OrMoreYears_Female_Widowed": "Count_Person_Female_Widowed", + "Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated": "Count_Person_Female_MarriedAndNotSeparated", + "MarginOfError_Count_Person_15OrMoreYears_Female_Separated": "MarginOfError_Count_Person_Female_Separated", + "MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried": "MarginOfError_Count_Person_Female_NeverMarried", + "MarginOfError_Count_Person_15OrMoreYears_Female_Divorced": "MarginOfError_Count_Person_Female_Divorced", + "MarginOfError_Count_Person_15OrMoreYears_Female_Widowed": "MarginOfError_Count_Person_Female_Widowed", + "MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated": "MarginOfError_Count_Person_Female_MarriedAndNotSeparated" + }, - "overwrite_dcids": {}, - "denominators": { + "denominators":{ "Estimate!!Total!!Population 15 years and over": [ "Estimate!!Now married (except separated)!!Population 15 years and over", "Estimate!!Widowed!!Population 15 years and over", @@ -342,6 +401,7 @@ "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over" ], + "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", @@ -461,6 +521,8 @@ "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over" ], + + "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -477,6 +539,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -494,6 +557,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -511,6 +575,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -528,6 +593,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -545,6 +611,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -562,6 +629,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -579,6 +647,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -596,6 +665,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", @@ -613,6 +683,7 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)" + ], "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino": [ "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", @@ -630,8 +701,10 @@ "Margin of Error!!Divorced MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "Margin of Error!!Separated MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "Margin of Error!!Never married MOE!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino" + ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over": [ + + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over":[ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over", @@ -648,7 +721,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force": [ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force":[ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", @@ -665,7 +738,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over": [ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over":[ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over", @@ -682,7 +755,7 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over" ], - "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force": [ + "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force":[ "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", @@ -699,6 +772,8 @@ "Margin of Error!!Separated MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Margin of Error!!Never married MOE!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force" ], + + "Total!!Estimate!!Population 15 years and over": [ "Now married (except separated)!!Estimate!!Population 15 years and over", "Widowed!!Estimate!!Population 15 years and over", @@ -795,6 +870,7 @@ "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over", "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over!!65 years and over" ], + "Total!!Estimate!!AGE AND SEX!!Females 15 years and over": [ "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over", "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over", @@ -879,6 +955,7 @@ "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over!!65 years and over", "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over!!65 years and over" ], + "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Widowed!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -890,6 +967,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -902,6 +980,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -914,6 +993,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -926,6 +1006,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -938,6 +1019,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -950,6 +1032,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -962,6 +1045,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" + ], "Total!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Now married (except separated)!!Estimate!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -974,6 +1058,7 @@ "Divorced!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Separated!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Never married!!Margin of Error!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" + ], "Total!!Estimate!!Hispanic or Latino origin (of any race)": [ "Now married (except separated)!!Estimate!!Hispanic or Latino origin (of any race)", @@ -986,6 +1071,7 @@ "Divorced!!Margin of Error!!Hispanic or Latino origin (of any race)", "Separated!!Margin of Error!!Hispanic or Latino origin (of any race)", "Never married!!Margin of Error!!Hispanic or Latino origin (of any race)" + ], "Total!!Estimate!!White alone, not Hispanic or Latino": [ "Now married (except separated)!!Estimate!!White alone, not Hispanic or Latino", @@ -998,8 +1084,10 @@ "Divorced!!Margin of Error!!White alone, not Hispanic or Latino", "Separated!!Margin of Error!!White alone, not Hispanic or Latino", "Never married!!Margin of Error!!White alone, not Hispanic or Latino" + ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over": [ + + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over", @@ -1011,7 +1099,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force": [ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", @@ -1023,7 +1111,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over": [ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over", @@ -1035,7 +1123,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force": [ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", @@ -1047,7 +1135,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force" ], - "Total!!Estimate!!NATIVITY!!Native": [ + "Total!!Estimate!!NATIVITY!!Native":[ "Now married (except separated)!!Estimate!!NATIVITY!!Native", "Widowed!!Estimate!!NATIVITY!!Native", "Divorced!!Estimate!!NATIVITY!!Native", @@ -1059,7 +1147,7 @@ "Separated!!Margin of Error!!NATIVITY!!Native", "Never married!!Margin of Error!!NATIVITY!!Native" ], - "Total!!Estimate!!NATIVITY!!Foreign born": [ + "Total!!Estimate!!NATIVITY!!Foreign born":[ "Now married (except separated)!!Estimate!!NATIVITY!!Foreign born", "Widowed!!Estimate!!NATIVITY!!Foreign born", "Divorced!!Estimate!!NATIVITY!!Foreign born", @@ -1071,6 +1159,8 @@ "Separated!!Margin of Error!!NATIVITY!!Foreign born", "Never married!!Margin of Error!!NATIVITY!!Foreign born" ], + + "Total!!Estimate!!15 to 19 years": [ "Now married (except separated)!!Estimate!!15 to 19 years", "Widowed!!Estimate!!15 to 19 years", @@ -1083,6 +1173,7 @@ "Separated!!Margin of Error!!15 to 19 years", "Never married!!Margin of Error!!15 to 19 years" ], + "Total!!Estimate!!20 to 34 years": [ "Now married (except separated)!!Estimate!!20 to 34 years", "Widowed!!Estimate!!20 to 34 years", @@ -1143,6 +1234,7 @@ "Separated!!Margin of Error!!65 years and over", "Never married!!Margin of Error!!65 years and over" ], + "Total!!Estimate!!65 years and over!!Females 15 years and over": [ "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over", "Widowed!!Estimate!!65 years and over!!Females 15 years and over", @@ -1155,6 +1247,7 @@ "Separated!!Margin of Error!!65 years and over!!Females 15 years and over", "Never married!!Margin of Error!!65 years and over!!Females 15 years and over" ], + "Total!!Estimate!!15 to 19 years.1": [ "Now married (except separated)!!Estimate!!15 to 19 years.1", "Widowed!!Estimate!!15 to 19 years.1", @@ -1227,6 +1320,7 @@ "Separated!!Margin of Error!!65 years and over.1", "Never married!!Margin of Error!!65 years and over.1" ], + "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Widowed!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", @@ -1238,6 +1332,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", @@ -1250,6 +1345,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", @@ -1262,6 +1358,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", @@ -1274,6 +1371,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", @@ -1286,6 +1384,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", @@ -1298,6 +1397,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", @@ -1310,6 +1410,7 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race" + ], "Total!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races": [ "Now married (except separated)!!Estimate!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", @@ -1322,8 +1423,10 @@ "Divorced!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Separated!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "Never married!!Margin of Error!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races" + ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force": [ + + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force", @@ -1335,7 +1438,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over": [ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", @@ -1347,7 +1450,7 @@ "Separated!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over", "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force!!Females 16 years and over" ], - "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1": [ + "Total!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1":[ "Now married (except separated)!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", "Widowed!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", "Divorced!!Estimate!!LABOR FORCE PARTICIPATION!!In labor force.1", @@ -1360,4 +1463,4 @@ "Never married!!Margin of Error!!LABOR FORCE PARTICIPATION!!In labor force.1" ] } -} \ No newline at end of file +} diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv index ef070ee697..af648c8606 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_cleaned.csv @@ -57,10 +57,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,743.0 2019,geoId/56,dcid:Count_Person_InLaborForce_Female,137564.0 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1305.0 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,251469.911 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3265.843 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,127451.58 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1898.72 +2019,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,251469.911 +2019,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3265.843 +2019,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,127451.58 +2019,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1898.72 2019,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,230.82 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,115.41 2019,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,21521.878 @@ -73,8 +73,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,640.432 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,30874.792 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,655.98 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123772.86 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1604.463 +2019,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123772.86 +2019,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1604.463 2019,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,157.374 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,87.43 2019,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25172.24 @@ -115,10 +115,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1805.024 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,75797.764 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1238.076 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25193.646 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,933.098 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,6170.84 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,474.68 +2019,geoId/56,dcid:Count_Person_Widowed,25193.646 +2019,geoId/56,dcid:MarginOfError_Count_Person_Widowed,933.098 +2019,geoId/56,dcid:Count_Person_Male_Widowed,6170.84 +2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,474.68 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,62.746 @@ -131,8 +131,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,200.135 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4810.52 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,437.32 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19024.347 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,916.836 +2019,geoId/56,dcid:Count_Person_Female_Widowed,19024.347 +2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,916.836 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,34.972 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.972 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,169.32 @@ -173,10 +173,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,902.512 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3714.228 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,412.692 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58318.625 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1866.196 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28955.48 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1186.7 +2019,geoId/56,dcid:Count_Person_Divorced,58318.625 +2019,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1866.196 +2019,geoId/56,dcid:Count_Person_Male_Divorced,28955.48 +2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1186.7 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2949.062 @@ -189,8 +189,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,560.378 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,6166.212 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,524.784 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29567.961 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1375.254 +2019,geoId/56,dcid:Count_Person_Female_Divorced,29567.961 +2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1375.254 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,34.972 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,34.972 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3668.6 @@ -231,10 +231,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1353.768 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20359.472 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,962.948 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6065.137 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,466.549 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2610.74 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,474.68 +2019,geoId/56,dcid:Count_Person_Separated,6065.137 +2019,geoId/56,dcid:MarginOfError_Count_Person_Separated,466.549 +2019,geoId/56,dcid:Count_Person_Male_Separated,2610.74 +2019,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,474.68 2019,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,38.47 2019,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,690.206 @@ -247,8 +247,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,160.108 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,218.66 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,87.464 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3208.926 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,458.418 +2019,geoId/56,dcid:Count_Person_Female_Separated,3208.926 +2019,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,458.418 2019,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.944 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.944 2019,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,790.16 @@ -289,10 +289,10 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,451.256 2019,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2338.588 2019,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,275.128 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125501.681 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2332.745 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72151.36 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1661.38 +2019,geoId/56,dcid:Count_Person_NeverMarried,125501.681 +2019,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2332.745 +2019,geoId/56,dcid:Count_Person_Male_NeverMarried,72151.36 +2019,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1661.38 2019,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19004.18 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,115.41 2019,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37584.854 @@ -305,8 +305,8 @@ Year,Place,StatVar,Quantity 2019,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,440.297 2019,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1661.816 2019,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,306.124 -2019,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53405.697 -2019,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1146.045 +2019,geoId/56,dcid:Count_Person_Female_NeverMarried,53405.697 +2019,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1146.045 2019,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17206.224 2019,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,122.402 2019,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26696.12 @@ -405,10 +405,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,614.0 2018,geoId/56,dcid:Count_Person_InLaborForce_Female,138353.0 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1239.0 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,250213.002 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3261.622 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,126838.884 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1900.208 +2018,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,250213.002 +2018,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3261.622 +2018,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,126838.884 +2018,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1900.208 2018,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,232.932 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,116.466 2018,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,21862.305 @@ -421,8 +421,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,609.195 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,29329.16 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,667.52 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123346.8 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1827.36 +2018,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123346.8 +2018,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1827.36 2018,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,207.876 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,69.292 2018,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25395.686 @@ -463,10 +463,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1800.68 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,76785.915 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1521.883 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25161.084 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,931.892 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,6413.202 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,475.052 +2018,geoId/56,dcid:Count_Person_Widowed,25161.084 +2018,geoId/56,dcid:MarginOfError_Count_Person_Widowed,931.892 +2018,geoId/56,dcid:Count_Person_Male_Widowed,6413.202 +2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,475.052 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.822 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,63.369 @@ -479,8 +479,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,243.678 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4881.24 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,458.92 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18730.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,685.26 +2018,geoId/56,dcid:Count_Person_Female_Widowed,18730.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,685.26 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,34.646 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,51.969 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,170.823 @@ -521,10 +521,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.255 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3735.531 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,415.059 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59641.088 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1863.784 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29215.698 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1187.63 +2018,geoId/56,dcid:Count_Person_Divorced,59641.088 +2018,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1863.784 +2018,geoId/56,dcid:Count_Person_Male_Divorced,29215.698 +2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1187.63 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.822 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2851.605 @@ -537,8 +537,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,527.969 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5882.52 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,542.36 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30151.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1142.1 +2018,geoId/56,dcid:Count_Person_Female_Divorced,30151.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1142.1 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.323 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.323 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3701.165 @@ -579,10 +579,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1125.425 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20614.597 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,968.471 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6057.298 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,465.946 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2850.312 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,475.052 +2018,geoId/56,dcid:Count_Person_Separated,6057.298 +2018,geoId/56,dcid:MarginOfError_Count_Person_Separated,465.946 +2018,geoId/56,dcid:Count_Person_Male_Separated,2850.312 +2018,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,475.052 2018,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.411 2018,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,633.69 @@ -595,8 +595,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,121.839 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,292.04 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,125.16 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3197.88 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,456.84 +2018,geoId/56,dcid:Count_Person_Female_Separated,3197.88 +2018,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,456.84 2018,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.292 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.292 2018,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,797.174 @@ -637,10 +637,10 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.17 2018,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2213.648 2018,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,276.706 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125339.474 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2329.73 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72207.904 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1425.156 +2018,geoId/56,dcid:Count_Person_NeverMarried,125339.474 +2018,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2329.73 +2018,geoId/56,dcid:Count_Person_Male_NeverMarried,72207.904 +2018,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1425.156 2018,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19178.068 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,116.466 2018,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37958.031 @@ -653,8 +653,8 @@ Year,Place,StatVar,Quantity 2018,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,406.13 2018,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1376.76 2018,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,250.32 -2018,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,52993.44 -2018,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1370.52 +2018,geoId/56,dcid:Count_Person_Female_NeverMarried,52993.44 +2018,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1370.52 2018,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17011.186 2018,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,103.938 2018,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26876.152 @@ -753,10 +753,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,584.0 2017,geoId/56,dcid:Count_Person_InLaborForce_Female,140166.0 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1497.0 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,250192.472 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2800.662 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,127147.536 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1666.728 +2017,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,250192.472 +2017,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2800.662 +2017,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,127147.536 +2017,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1666.728 2017,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,212.102 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,96.41 2017,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22789.026 @@ -769,8 +769,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,695.334 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,28307.776 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,601.44 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,123026.074 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1600.711 +2017,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,123026.074 +2017,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1600.711 2017,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,192.962 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,70.168 2017,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25319.904 @@ -811,10 +811,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1577.219 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77932.296 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1401.66 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25205.958 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,933.554 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5952.6 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,476.208 +2017,geoId/56,dcid:Count_Person_Widowed,25205.958 +2017,geoId/56,dcid:MarginOfError_Count_Person_Widowed,933.554 +2017,geoId/56,dcid:Count_Person_Male_Widowed,5952.6 +2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,476.208 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.564 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,64.926 @@ -827,8 +827,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,204.51 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4651.136 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,441.056 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18979.859 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,686.019 +2017,geoId/56,dcid:Count_Person_Female_Widowed,18979.859 +2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,686.019 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.084 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,115.616 @@ -869,10 +869,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.951 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,3924.648 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,420.498 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59280.679 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1867.108 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29048.688 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1190.52 +2017,geoId/56,dcid:Count_Person_Divorced,59280.679 +2017,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1867.108 +2017,geoId/56,dcid:Count_Person_Male_Divorced,29048.688 +2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1190.52 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.564 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2791.818 @@ -885,8 +885,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,613.53 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5613.44 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,481.152 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30184.836 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1372.038 +2017,geoId/56,dcid:Count_Person_Female_Divorced,30184.836 +2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1372.038 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.542 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.542 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,3988.752 @@ -927,10 +927,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1351.902 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20604.402 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1121.328 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6534.878 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,933.554 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3095.352 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,476.208 +2017,geoId/56,dcid:Count_Person_Separated,6534.878 +2017,geoId/56,dcid:MarginOfError_Count_Person_Separated,933.554 +2017,geoId/56,dcid:Count_Person_Male_Separated,3095.352 +2017,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,476.208 2017,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.282 2017,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,584.334 @@ -943,8 +943,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,122.706 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,320.768 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,120.288 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3201.422 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,457.346 +2017,geoId/56,dcid:Count_Person_Female_Separated,3201.422 +2017,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,457.346 2017,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,122.794 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,87.71 2017,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,809.312 @@ -985,10 +985,10 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.634 2017,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2382.822 2017,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,420.498 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,126029.79 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1867.108 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72621.72 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1190.52 +2017,geoId/56,dcid:Count_Person_NeverMarried,126029.79 +2017,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1867.108 +2017,geoId/56,dcid:Count_Person_Male_NeverMarried,72621.72 +2017,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1190.52 2017,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19069.898 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,96.41 2017,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38695.896 @@ -1001,8 +1001,8 @@ Year,Place,StatVar,Quantity 2017,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,368.118 2017,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1283.072 2017,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,240.576 -2017,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53280.809 -2017,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,914.692 +2017,geoId/56,dcid:Count_Person_Female_NeverMarried,53280.809 +2017,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,914.692 2017,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17208.702 2017,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,140.336 2017,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,27458.8 @@ -1101,10 +1101,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,560.0 2016,geoId/56,dcid:Count_Person_InLaborForce_Female,140801.0 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1525.0 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,248006.164 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2797.062 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125649.667 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1662.661 +2016,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,248006.164 +2016,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2797.062 +2016,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125649.667 +2016,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1662.661 2016,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,214.06 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,116.76 2016,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22463.64 @@ -1117,8 +1117,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,653.84 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,27168.732 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,611.392 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,122101.236 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1600.578 +2016,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,122101.236 +2016,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1600.578 2016,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,244.16 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,87.2 2016,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,25386.48 @@ -1159,10 +1159,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1576.722 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77299.749 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1408.01 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25173.558 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,932.354 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5938.075 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,475.046 +2016,geoId/56,dcid:Count_Person_Widowed,25173.558 +2016,geoId/56,dcid:MarginOfError_Count_Person_Widowed,932.354 +2016,geoId/56,dcid:Count_Person_Male_Widowed,5938.075 +2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,475.046 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,38.92 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,65.112 @@ -1175,8 +1175,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,204.325 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4356.168 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,420.332 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19206.936 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,685.962 +2016,geoId/56,dcid:Count_Person_Female_Widowed,19206.936 +2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,685.962 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.88 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,176.295 @@ -1217,10 +1217,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,675.738 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4364.831 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,422.403 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,59670.656 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1864.708 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,29452.852 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1187.615 +2016,geoId/56,dcid:Count_Person_Divorced,59670.656 +2016,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1864.708 +2016,geoId/56,dcid:Count_Person_Male_Divorced,29452.852 +2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1187.615 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,38.92 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,2995.152 @@ -1233,8 +1233,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,572.11 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,5082.196 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,420.332 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30182.328 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1143.27 +2016,geoId/56,dcid:Count_Person_Female_Divorced,30182.328 +2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1143.27 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.44 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.44 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4348.61 @@ -1275,10 +1275,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1126.23 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20697.747 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,985.607 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6992.655 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,932.354 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3562.845 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,475.046 +2016,geoId/56,dcid:Count_Person_Separated,6992.655 +2016,geoId/56,dcid:MarginOfError_Count_Person_Separated,932.354 +2016,geoId/56,dcid:Count_Person_Male_Separated,3562.845 +2016,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,475.046 2016,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.46 2016,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,586.008 @@ -1291,8 +1291,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,163.46 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,382.12 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,191.06 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3429.81 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,457.308 +2016,geoId/56,dcid:Count_Person_Female_Separated,3429.81 +2016,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,457.308 2016,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.76 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,69.76 2016,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,881.475 @@ -1333,10 +1333,10 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,450.492 2016,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2534.418 2016,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,422.403 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,126800.144 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2330.885 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72919.561 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1662.661 +2016,geoId/56,dcid:Count_Person_NeverMarried,126800.144 +2016,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2330.885 +2016,geoId/56,dcid:Count_Person_Male_NeverMarried,72919.561 +2016,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1662.661 2016,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19245.94 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,116.76 2016,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38936.976 @@ -1349,8 +1349,8 @@ Year,Place,StatVar,Quantity 2016,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,367.785 2016,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1222.784 2016,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,191.06 -2016,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,53733.69 -2016,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1371.924 +2016,geoId/56,dcid:Count_Person_Female_NeverMarried,53733.69 +2016,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1371.924 2016,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17126.08 2016,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,104.64 2016,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,27972.14 @@ -1449,10 +1449,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,552.0 2015,geoId/56,dcid:Count_Person_InLaborForce_Female,141128.0 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1349.0 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247220.857 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3710.632 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125085.83 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,2124.099 +2015,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247220.857 +2015,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3710.632 +2015,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125085.83 +2015,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,2124.099 2015,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,176.445 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,78.42 2015,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22588.659 @@ -1465,8 +1465,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,730.278 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,26273.62 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,513.73 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,122110.448 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1822.544 +2015,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,122110.448 +2015,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1822.544 2015,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,242.62 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,103.98 2015,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26463.15 @@ -1507,10 +1507,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1795.24 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,78184.912 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1270.152 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,25046.766 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,927.658 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5900.275 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,472.022 +2015,geoId/56,dcid:Count_Person_Widowed,25046.766 +2015,geoId/56,dcid:MarginOfError_Count_Person_Widowed,927.658 +2015,geoId/56,dcid:Count_Person_Male_Widowed,5900.275 +2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,472.022 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,39.21 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,65.097 @@ -1523,8 +1523,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,243.426 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4293.315 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,366.95 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,19364.53 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,683.454 +2015,geoId/56,dcid:Count_Person_Female_Widowed,19364.53 +2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,683.454 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,34.66 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,235.228 @@ -1565,10 +1565,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,673.215 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4657.224 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,423.384 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58906.283 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1855.316 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28793.342 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1180.055 +2015,geoId/56,dcid:Count_Person_Divorced,58906.283 +2015,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1855.316 +2015,geoId/56,dcid:Count_Person_Male_Divorced,28793.342 +2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1180.055 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,39.21 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3189.753 @@ -1581,8 +1581,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,527.423 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,4660.265 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,403.645 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30071.976 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1139.09 +2015,geoId/56,dcid:Count_Person_Female_Divorced,30071.976 +2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1139.09 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.33 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,17.33 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4234.104 @@ -1623,10 +1623,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1122.025 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20886.944 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,846.768 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6957.435 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,463.829 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3540.165 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,472.022 +2015,geoId/56,dcid:Count_Person_Separated,6957.435 +2015,geoId/56,dcid:MarginOfError_Count_Person_Separated,463.829 +2015,geoId/56,dcid:Count_Person_Male_Separated,3540.165 +2015,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,472.022 2015,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.605 2015,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,716.067 @@ -1639,8 +1639,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,121.713 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,293.56 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,146.78 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3645.088 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,455.636 +2015,geoId/56,dcid:Count_Person_Female_Separated,3645.088 +2015,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,455.636 2015,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,69.32 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,86.65 2015,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1117.333 @@ -1681,10 +1681,10 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,448.81 2015,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2681.432 2015,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,423.384 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,125233.83 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2319.145 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,72691.388 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1652.077 +2015,geoId/56,dcid:Count_Person_NeverMarried,125233.83 +2015,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2319.145 +2015,geoId/56,dcid:Count_Person_Male_NeverMarried,72691.388 +2015,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1652.077 2015,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19428.555 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,78.42 2015,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,38537.424 @@ -1697,8 +1697,8 @@ Year,Place,StatVar,Quantity 2015,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,365.139 2015,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1210.935 2015,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,220.17 -2015,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,52853.776 -2015,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1139.09 +2015,geoId/56,dcid:Count_Person_Female_NeverMarried,52853.776 +2015,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1139.09 2015,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17000.73 2015,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,138.64 2015,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,26757.185 @@ -1801,10 +1801,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,573.0 2014,geoId/56,dcid:Count_Person_InLaborForce_Female,139986.0 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1564.0 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247171.434 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2761.692 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125270.25 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1639.05 +2014,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247171.434 +2014,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2761.692 +2014,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125270.25 +2014,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1639.05 2014,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,98.775 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,59.265 2014,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22989.372 @@ -1817,8 +1817,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,639.872 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,25501.875 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,527.625 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121659.016 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1582.924 +2014,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121659.016 +2014,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1582.924 2014,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,301.036 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,106.248 2014,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26540.642 @@ -1863,10 +1863,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1558.956 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77832.216 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1399.86 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,24394.946 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,920.564 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5619.6 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,468.3 +2014,geoId/56,dcid:Count_Person_Widowed,24394.946 +2014,geoId/56,dcid:MarginOfError_Count_Person_Widowed,920.564 +2014,geoId/56,dcid:Count_Person_Male_Widowed,5619.6 +2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,468.3 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,39.51 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,64.396 @@ -1879,8 +1879,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,159.968 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4185.825 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,351.75 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18768.956 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,678.396 +2014,geoId/56,dcid:Count_Person_Female_Widowed,18768.956 +2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,678.396 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.416 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,231.796 @@ -1925,10 +1925,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,668.124 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4619.538 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,279.972 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,58916.096 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1841.128 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,28566.3 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1170.75 +2014,geoId/56,dcid:Count_Person_Divorced,58916.096 +2014,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1841.128 +2014,geoId/56,dcid:Count_Person_Male_Divorced,28566.3 +2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1170.75 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,19.755 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3155.404 @@ -1941,8 +1941,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,559.888 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,4045.125 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,386.925 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,30301.688 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1130.66 +2014,geoId/56,dcid:Count_Person_Female_Divorced,30301.688 +2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1130.66 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,17.708 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,35.416 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4404.124 @@ -1987,10 +1987,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1336.248 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21137.886 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1119.888 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,7364.512 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,460.282 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3746.4 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,468.3 +2014,geoId/56,dcid:Count_Person_Separated,7364.512 +2014,geoId/56,dcid:MarginOfError_Count_Person_Separated,460.282 +2014,geoId/56,dcid:Count_Person_Male_Separated,3746.4 +2014,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,468.3 2014,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,19.755 2014,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,901.544 @@ -2003,8 +2003,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,159.968 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,281.4 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,140.7 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3618.112 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,452.264 +2014,geoId/56,dcid:Count_Person_Female_Separated,3618.112 +2014,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,452.264 2014,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,53.124 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,70.832 2014,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1158.98 @@ -2049,10 +2049,10 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,445.416 2014,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2799.72 2014,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,419.958 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,122435.012 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2301.41 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,70947.45 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1404.9 +2014,geoId/56,dcid:Count_Person_NeverMarried,122435.012 +2014,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2301.41 +2014,geoId/56,dcid:Count_Person_Male_NeverMarried,70947.45 +2014,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1404.9 2014,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,19636.47 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,59.265 2014,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,37349.68 @@ -2065,8 +2065,8 @@ Year,Place,StatVar,Quantity 2014,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,319.936 2014,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1160.775 2014,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,211.05 -2014,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,51558.096 -2014,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1130.66 +2014,geoId/56,dcid:Count_Person_Female_NeverMarried,51558.096 +2014,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1130.66 2014,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17318.424 2014,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,123.956 2014,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,25613.458 @@ -2173,10 +2173,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,428.0 2013,geoId/56,dcid:Count_Person_InLaborForce_Female,139233.0 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1463.0 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,247925.28 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2734.47 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125943.42 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1623.58 +2013,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,247925.28 +2013,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2734.47 +2013,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125943.42 +2013,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1623.58 2013,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,121.086 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.543 2013,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22652.389 @@ -2189,8 +2189,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,584.73 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,24746.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,506.4 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121973.725 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1566.635 +2013,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121973.725 +2013,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1566.635 2013,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,395.714 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,143.896 2013,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26830.083 @@ -2235,10 +2235,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1541.365 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77970.48 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1253.097 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,24610.23 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,911.49 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5798.5 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,463.88 +2013,geoId/56,dcid:Count_Person_Widowed,24610.23 +2013,geoId/56,dcid:MarginOfError_Count_Person_Widowed,911.49 +2013,geoId/56,dcid:Count_Person_Male_Widowed,5798.5 +2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,463.88 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,62.749 @@ -2251,8 +2251,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,194.91 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4084.96 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,337.6 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18799.62 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,671.415 +2013,geoId/56,dcid:Count_Person_Female_Widowed,18799.62 +2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,671.415 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,35.974 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,228.828 @@ -2297,10 +2297,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,660.585 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4455.456 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,417.699 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,56512.38 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1822.98 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,27136.98 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,927.76 +2013,geoId/56,dcid:Count_Person_Divorced,56512.38 +2013,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1822.98 +2013,geoId/56,dcid:Count_Person_Male_Divorced,27136.98 +2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,927.76 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3200.199 @@ -2313,8 +2313,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,506.766 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3578.56 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,337.6 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29318.455 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1119.025 +2013,geoId/56,dcid:Count_Person_Female_Divorced,29318.455 +2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1119.025 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,35.974 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,35.974 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4404.939 @@ -2359,10 +2359,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1100.975 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20745.717 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,974.631 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6836.175 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,911.49 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,3479.1 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,463.88 +2013,geoId/56,dcid:Count_Person_Separated,6836.175 +2013,geoId/56,dcid:MarginOfError_Count_Person_Separated,911.49 +2013,geoId/56,dcid:Count_Person_Male_Separated,3479.1 +2013,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,463.88 2013,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,20.181 2013,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,815.737 @@ -2375,8 +2375,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,155.928 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,270.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,101.28 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3580.88 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,447.61 +2013,geoId/56,dcid:Count_Person_Female_Separated,3580.88 +2013,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,447.61 2013,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,71.948 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,53.961 2013,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1144.14 @@ -2421,10 +2421,10 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,440.39 2013,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2784.66 2013,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,417.699 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,120316.68 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1822.98 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,69813.94 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1391.64 +2013,geoId/56,dcid:Count_Person_NeverMarried,120316.68 +2013,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1822.98 +2013,geoId/56,dcid:Count_Person_Male_NeverMarried,69813.94 +2013,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1391.64 2013,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20059.914 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,60.543 2013,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,35955.177 @@ -2437,8 +2437,8 @@ Year,Place,StatVar,Quantity 2013,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,311.856 2013,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1114.08 2013,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,202.56 -2013,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,50356.125 -2013,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1119.025 +2013,geoId/56,dcid:Count_Person_Female_NeverMarried,50356.125 +2013,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1119.025 2013,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17501.351 2013,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,143.896 2013,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,24599.01 @@ -2545,10 +2545,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,403.0 2012,geoId/56,dcid:Count_Person_InLaborForce_Female,138145.0 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1303.0 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,246649.868 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3150.637 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,125320.476 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1600.809 +2012,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,246649.868 +2012,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3150.637 +2012,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,125320.476 +2012,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1600.809 2012,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,102.415 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,61.449 2012,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22360.265 @@ -2561,8 +2561,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,566.355 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,23760.297 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,488.895 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,121329.392 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1771.232 +2012,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,121329.392 +2012,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1771.232 2012,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,360.44 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,126.154 2012,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26990.072 @@ -2607,10 +2607,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1959.786 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77637.49 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1519.595 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23854.823 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,900.182 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5259.801 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,457.374 +2012,geoId/56,dcid:Count_Person_Widowed,23854.823 +2012,geoId/56,dcid:MarginOfError_Count_Person_Widowed,900.182 +2012,geoId/56,dcid:Count_Person_Male_Widowed,5259.801 +2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,457.374 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,40.966 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -2623,8 +2623,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,151.028 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,3911.16 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,358.523 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18819.34 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,664.212 +2012,geoId/56,dcid:Count_Person_Female_Widowed,18819.34 +2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,664.212 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,36.044 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,223.984 @@ -2669,10 +2669,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,653.262 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4696.93 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,414.435 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,56261.375 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1800.364 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26985.066 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1143.435 +2012,geoId/56,dcid:Count_Person_Divorced,56261.375 +2012,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1800.364 +2012,geoId/56,dcid:Count_Person_Male_Divorced,26985.066 +2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1143.435 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.483 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3491.877 @@ -2685,8 +2685,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,528.598 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3585.23 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,325.93 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29225.328 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1107.02 +2012,geoId/56,dcid:Count_Person_Female_Divorced,29225.328 +2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1107.02 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,54.066 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,54.066 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4255.696 @@ -2731,10 +2731,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1306.524 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21136.185 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,1105.16 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,6301.274 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,900.182 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2744.244 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,457.374 +2012,geoId/56,dcid:Count_Person_Separated,6301.274 +2012,geoId/56,dcid:MarginOfError_Count_Person_Separated,900.182 +2012,geoId/56,dcid:Count_Person_Male_Separated,2744.244 +2012,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,457.374 2012,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,40.966 2012,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,796.393 @@ -2747,8 +2747,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,113.271 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,228.151 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,97.779 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3763.868 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,664.212 +2012,geoId/56,dcid:Count_Person_Female_Separated,3763.868 +2012,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,664.212 2012,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,54.066 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,36.044 2012,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1287.908 @@ -2793,10 +2793,10 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,653.262 2012,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2762.9 2012,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,552.58 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,117023.66 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,2250.455 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,68148.726 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1372.122 +2012,geoId/56,dcid:Count_Person_NeverMarried,117023.66 +2012,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,2250.455 +2012,geoId/56,dcid:Count_Person_Male_NeverMarried,68148.726 +2012,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1372.122 2012,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20380.585 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,61.449 2012,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,34612.465 @@ -2809,8 +2809,8 @@ Year,Place,StatVar,Quantity 2012,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,302.056 2012,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1108.162 2012,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,228.151 -2012,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,48708.88 -2012,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1107.02 +2012,geoId/56,dcid:Count_Person_Female_NeverMarried,48708.88 +2012,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1107.02 2012,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17553.428 2012,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,144.176 2012,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,23182.344 @@ -2917,10 +2917,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,450.0 2011,geoId/56,dcid:Count_Person_InLaborForce_Female,137250.0 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1296.0 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,244501.291 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,2662.446 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,124568.227 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1802.072 +2011,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,244501.291 +2011,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,2662.446 +2011,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,124568.227 +2011,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1802.072 2011,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,100.92 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.552 2011,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22796.58 @@ -2933,8 +2933,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,548.595 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,22826.272 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,504.448 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,120165.1 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1529.374 +2011,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,120165.1 +2011,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1529.374 2011,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,363.92 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,127.372 2011,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26998.179 @@ -2979,10 +2979,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1505.406 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77409.0 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1372.5 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23962.014 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,887.482 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5406.216 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,450.518 +2011,geoId/56,dcid:Count_Person_Widowed,23962.014 +2011,geoId/56,dcid:MarginOfError_Count_Person_Widowed,887.482 +2011,geoId/56,dcid:Count_Person_Male_Widowed,5406.216 +2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,450.518 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,40.368 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -2995,8 +2995,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,146.292 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4067.112 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,346.808 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18570.97 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,655.446 +2011,geoId/56,dcid:Count_Person_Female_Widowed,18570.97 +2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,655.446 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,18.196 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,276.055 @@ -3041,10 +3041,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,645.174 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4529.25 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,411.75 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,55467.625 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1774.964 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26355.303 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1126.295 +2011,geoId/56,dcid:Count_Person_Divorced,55467.625 +2011,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1774.964 +2011,geoId/56,dcid:Count_Person_Male_Divorced,26355.303 +2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1126.295 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.184 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3299.505 @@ -3057,8 +3057,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,438.876 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3468.08 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,378.336 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,29058.106 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,1092.41 +2011,geoId/56,dcid:Count_Person_Female_Divorced,29058.106 +2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,1092.41 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,36.392 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Divorced,36.392 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4527.302 @@ -3103,10 +3103,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1075.29 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,21548.25 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,960.75 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,5768.633 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,443.741 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2477.849 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,450.518 +2011,geoId/56,dcid:Count_Person_Separated,5768.633 +2011,geoId/56,dcid:MarginOfError_Count_Person_Separated,443.741 +2011,geoId/56,dcid:Count_Person_Male_Separated,2477.849 +2011,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,450.518 2011,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,0.0 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,20.184 2011,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,539.919 @@ -3119,8 +3119,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,146.292 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,126.112 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,63.056 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3277.23 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,436.964 +2011,geoId/56,dcid:Count_Person_Female_Separated,3277.23 +2011,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,436.964 2011,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,72.784 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,54.588 2011,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1104.22 @@ -3165,10 +3165,10 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,430.116 2011,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2470.5 2011,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,411.75 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,114041.437 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1774.964 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,66451.405 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1351.554 +2011,geoId/56,dcid:Count_Person_NeverMarried,114041.437 +2011,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1774.964 +2011,geoId/56,dcid:Count_Person_Male_NeverMarried,66451.405 +2011,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1351.554 2011,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20083.08 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,60.552 2011,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,33295.005 @@ -3181,8 +3181,8 @@ Year,Place,StatVar,Quantity 2011,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,292.584 2011,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1008.896 2011,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,189.168 -2011,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,47410.594 -2011,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1092.41 +2011,geoId/56,dcid:Count_Person_Female_NeverMarried,47410.594 +2011,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1092.41 2011,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17722.904 2011,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,145.568 2011,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,22250.033 @@ -3289,10 +3289,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female,443.0 2010,geoId/56,dcid:Count_Person_InLaborForce_Female,135160.0 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female,1156.0 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated,243888.408 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated,3059.532 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,123425.63 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated,1772.72 +2010,geoId/56,dcid:Count_Person_MarriedAndNotSeparated,243888.408 +2010,geoId/56,dcid:MarginOfError_Count_Person_MarriedAndNotSeparated,3059.532 +2010,geoId/56,dcid:Count_Person_Male_MarriedAndNotSeparated,123425.63 +2010,geoId/56,dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated,1772.72 2010,geoId/56,dcid:Count_Person_15To19Years_Male_MarriedAndNotSeparated,121.878 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_MarriedAndNotSeparated,60.939 2010,geoId/56,dcid:Count_Person_20To34Years_Male_MarriedAndNotSeparated,22138.8 @@ -3305,8 +3305,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_MarriedAndNotSeparated,453.323 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,22258.434 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_MarriedAndNotSeparated,490.544 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,120456.674 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated,1508.402 +2010,geoId/56,dcid:Count_Person_Female_MarriedAndNotSeparated,120456.674 +2010,geoId/56,dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated,1508.402 2010,geoId/56,dcid:Count_Person_15To19Years_Female_MarriedAndNotSeparated,387.387 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_MarriedAndNotSeparated,129.129 2010,geoId/56,dcid:Count_Person_20To34Years_Female_MarriedAndNotSeparated,26746.304 @@ -3351,10 +3351,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_MarriedAndNotSeparated,1482.432 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_MarriedAndNotSeparated,77581.84 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_MarriedAndNotSeparated,1216.44 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Widowed,23602.104 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed,874.152 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Widowed,5318.16 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed,443.18 +2010,geoId/56,dcid:Count_Person_Widowed,23602.104 +2010,geoId/56,dcid:MarginOfError_Count_Person_Widowed,874.152 +2010,geoId/56,dcid:Count_Person_Male_Widowed,5318.16 +2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Widowed,443.18 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Widowed,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Widowed,20.313 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Widowed,0.0 @@ -3367,8 +3367,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Widowed,174.355 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Widowed,4016.329 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Widowed,367.908 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Widowed,18316.31 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed,646.458 +2010,geoId/56,dcid:Count_Person_Female_Widowed,18316.31 +2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Widowed,646.458 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Widowed,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Widowed,36.894 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Widowed,161.772 @@ -3413,9 +3413,9 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Widowed,635.328 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Widowed,4325.12 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Widowed,405.48 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced,1748.304 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Divorced,26369.21 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced,1107.95 +2010,geoId/56,dcid:MarginOfError_Count_Person_Divorced,1748.304 +2010,geoId/56,dcid:Count_Person_Male_Divorced,26369.21 +2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Divorced,1107.95 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Divorced,0.0 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Divorced,20.313 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Divorced,3495.6 @@ -3428,8 +3428,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Divorced,488.194 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Divorced,3219.195 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Divorced,337.249 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Divorced,27582.208 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced,861.944 +2010,geoId/56,dcid:Count_Person_Female_Divorced,27582.208 +2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Divorced,861.944 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Divorced,36.894 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Divorced,4583.54 2010,geoId/56,dcid:Count_Person_35To44Years_Female_Divorced,5679.045 @@ -3440,7 +3440,7 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Female_Divorced,430.651 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Female_Divorced,3749.865 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Female_Divorced,357.13 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced,54197.424 +2010,geoId/56,dcid:Count_Person_Divorced,54197.424 2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced_OneRace,52736.373 2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced_OneRace,1715.004 2010,geoId/56,dcid:Count_Person_15OrMoreYears_Divorced_WhiteAlone,49682.283 @@ -3473,10 +3473,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Divorced,1058.88 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Divorced,20679.48 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Divorced,810.96 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Separated,5681.988 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Separated,437.076 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_Separated,2659.08 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated,443.18 +2010,geoId/56,dcid:Count_Person_Separated,5681.988 +2010,geoId/56,dcid:MarginOfError_Count_Person_Separated,437.076 +2010,geoId/56,dcid:Count_Person_Male_Separated,2659.08 +2010,geoId/56,dcid:MarginOfError_Count_Person_Male_Separated,443.18 2010,geoId/56,dcid:Count_Person_15To19Years_Male_Separated,40.626 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_Separated,40.626 2010,geoId/56,dcid:Count_Person_20To34Years_Male_Separated,873.9 @@ -3491,8 +3491,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_Separated,104.613 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_Separated,153.295 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_Separated,61.318 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_Separated,3016.804 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated,430.972 +2010,geoId/56,dcid:Count_Person_Female_Separated,3016.804 +2010,geoId/56,dcid:MarginOfError_Count_Person_Female_Separated,430.972 2010,geoId/56,dcid:Count_Person_15To19Years_Female_Separated,92.235 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_Separated,73.788 2010,geoId/56,dcid:Count_Person_20To34Years_Female_Separated,1024.556 @@ -3537,10 +3537,10 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_16OrMoreYears_Female_Separated,423.552 2010,geoId/56,dcid:Count_Person_InLaborForce_Female_Separated,2297.72 2010,geoId/56,dcid:MarginOfError_Count_Person_InLaborForce_Female_Separated,405.48 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_NeverMarried,110143.152 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried,1748.304 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Male_NeverMarried,63817.92 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried,1107.95 +2010,geoId/56,dcid:Count_Person_NeverMarried,110143.152 +2010,geoId/56,dcid:MarginOfError_Count_Person_NeverMarried,1748.304 +2010,geoId/56,dcid:Count_Person_Male_NeverMarried,63817.92 +2010,geoId/56,dcid:MarginOfError_Count_Person_Male_NeverMarried,1107.95 2010,geoId/56,dcid:Count_Person_15To19Years_Male_NeverMarried,20130.183 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Male_NeverMarried,81.252 2010,geoId/56,dcid:Count_Person_20To34Years_Male_NeverMarried,31751.7 @@ -3553,8 +3553,8 @@ Year,Place,StatVar,Quantity 2010,geoId/56,dcid:MarginOfError_Count_Person_55To64Years_Male_NeverMarried,244.097 2010,geoId/56,dcid:Count_Person_65OrMoreYears_Male_NeverMarried,1042.406 2010,geoId/56,dcid:MarginOfError_Count_Person_65OrMoreYears_Male_NeverMarried,183.954 -2010,geoId/56,dcid:Count_Person_15OrMoreYears_Female_NeverMarried,46114.004 -2010,geoId/56,dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried,1077.43 +2010,geoId/56,dcid:Count_Person_Female_NeverMarried,46114.004 +2010,geoId/56,dcid:MarginOfError_Count_Person_Female_NeverMarried,1077.43 2010,geoId/56,dcid:Count_Person_15To19Years_Female_NeverMarried,17930.484 2010,geoId/56,dcid:MarginOfError_Count_Person_15To19Years_Female_NeverMarried,147.576 2010,geoId/56,dcid:Count_Person_20To34Years_Female_NeverMarried,21407.828 diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf index 0d60147d67..0450479f6e 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/S1201_output.mcf @@ -464,7 +464,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated +Node: dcid:Count_Person_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -472,7 +472,7 @@ populationType: dcs:Person maritalStatus: dcs:MarriedAndNotSeparated typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -480,7 +480,7 @@ populationType: dcs:Person maritalStatus: dcs:MarriedAndNotSeparated typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated +Node: dcid:Count_Person_Male_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -489,7 +489,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -606,7 +606,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated +Node: dcid:Count_Person_Female_MarriedAndNotSeparated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -615,7 +615,7 @@ maritalStatus: dcs:MarriedAndNotSeparated gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated +Node: dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -988,7 +988,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Widowed +Node: dcid:Count_Person_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -996,7 +996,7 @@ populationType: dcs:Person maritalStatus: dcs:Widowed typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed +Node: dcid:MarginOfError_Count_Person_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1004,7 +1004,7 @@ populationType: dcs:Person maritalStatus: dcs:Widowed typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Male_Widowed +Node: dcid:Count_Person_Male_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1013,7 +1013,7 @@ maritalStatus: dcs:Widowed gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed +Node: dcid:MarginOfError_Count_Person_Male_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1130,7 +1130,7 @@ maritalStatus: dcs:Widowed gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Female_Widowed +Node: dcid:Count_Person_Female_Widowed statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1139,7 +1139,7 @@ maritalStatus: dcs:Widowed gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed +Node: dcid:MarginOfError_Count_Person_Female_Widowed statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1512,7 +1512,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Divorced +Node: dcid:Count_Person_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1520,7 +1520,7 @@ populationType: dcs:Person maritalStatus: dcs:Divorced typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced +Node: dcid:MarginOfError_Count_Person_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1528,7 +1528,7 @@ populationType: dcs:Person maritalStatus: dcs:Divorced typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Male_Divorced +Node: dcid:Count_Person_Male_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1537,7 +1537,7 @@ maritalStatus: dcs:Divorced gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced +Node: dcid:MarginOfError_Count_Person_Male_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -1654,7 +1654,7 @@ maritalStatus: dcs:Divorced gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Female_Divorced +Node: dcid:Count_Person_Female_Divorced statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -1663,7 +1663,7 @@ maritalStatus: dcs:Divorced gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced +Node: dcid:MarginOfError_Count_Person_Female_Divorced statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2036,7 +2036,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Separated +Node: dcid:Count_Person_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2044,7 +2044,7 @@ populationType: dcs:Person maritalStatus: dcs:Separated typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Separated +Node: dcid:MarginOfError_Count_Person_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2052,7 +2052,7 @@ populationType: dcs:Person maritalStatus: dcs:Separated typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Male_Separated +Node: dcid:Count_Person_Male_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2061,7 +2061,7 @@ maritalStatus: dcs:Separated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated +Node: dcid:MarginOfError_Count_Person_Male_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2178,7 +2178,7 @@ maritalStatus: dcs:Separated gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Female_Separated +Node: dcid:Count_Person_Female_Separated statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2187,7 +2187,7 @@ maritalStatus: dcs:Separated gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated +Node: dcid:MarginOfError_Count_Person_Female_Separated statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2560,7 +2560,7 @@ gender: dcs:Female employmentStatus: dcs:BLS_InLaborForce typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_NeverMarried +Node: dcid:Count_Person_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2568,7 +2568,7 @@ populationType: dcs:Person maritalStatus: dcs:NeverMarried typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried +Node: dcid:MarginOfError_Count_Person_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2576,7 +2576,7 @@ populationType: dcs:Person maritalStatus: dcs:NeverMarried typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Male_NeverMarried +Node: dcid:Count_Person_Male_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2585,7 +2585,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried +Node: dcid:MarginOfError_Count_Person_Male_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] @@ -2702,7 +2702,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Male typeOf: dcs:StatisticalVariable -Node: dcid:Count_Person_15OrMoreYears_Female_NeverMarried +Node: dcid:Count_Person_Female_NeverMarried statType: dcs:measuredValue measuredProperty: dcs:count age: [15 - Years] @@ -2711,7 +2711,7 @@ maritalStatus: dcs:NeverMarried gender: dcs:Female typeOf: dcs:StatisticalVariable -Node: dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried +Node: dcid:MarginOfError_Count_Person_Female_NeverMarried statType: dcs:marginOfError measuredProperty: dcs:count age: [15 - Years] diff --git a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json index 091a0285ec..4664e1302f 100644 --- a/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json +++ b/scripts/us_census/acs5yr/subject_tables/s1201/testdata/column_map.json @@ -525,7 +525,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -534,7 +534,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -543,7 +543,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -553,7 +553,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -683,7 +683,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -693,7 +693,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1107,7 +1107,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1116,7 +1116,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1125,7 +1125,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1135,7 +1135,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1265,7 +1265,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1275,7 +1275,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1689,7 +1689,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1698,7 +1698,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1707,7 +1707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1717,7 +1717,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1847,7 +1847,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -1857,7 +1857,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2271,7 +2271,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2280,7 +2280,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2289,7 +2289,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2299,7 +2299,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2429,7 +2429,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2439,7 +2439,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2853,7 +2853,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2862,7 +2862,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2871,7 +2871,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -2881,7 +2881,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3011,7 +3011,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3021,7 +3021,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3961,7 +3961,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3970,7 +3970,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3979,7 +3979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -3989,7 +3989,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4119,7 +4119,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4129,7 +4129,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4543,7 +4543,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4552,7 +4552,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4561,7 +4561,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4571,7 +4571,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4701,7 +4701,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -4711,7 +4711,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5125,7 +5125,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5134,7 +5134,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5143,7 +5143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5153,7 +5153,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5283,7 +5283,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5293,7 +5293,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5707,7 +5707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5716,7 +5716,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5725,7 +5725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5735,7 +5735,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5865,7 +5865,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -5875,7 +5875,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6289,7 +6289,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6298,7 +6298,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6307,7 +6307,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6317,7 +6317,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6447,7 +6447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -6457,7 +6457,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7397,7 +7397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7406,7 +7406,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7415,7 +7415,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7425,7 +7425,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7555,7 +7555,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7565,7 +7565,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Now married (except separated) MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7979,7 +7979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7988,7 +7988,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -7997,7 +7997,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8007,7 +8007,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8137,7 +8137,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8147,7 +8147,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Widowed MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8561,7 +8561,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8570,7 +8570,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8579,7 +8579,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8589,7 +8589,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8719,7 +8719,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -8729,7 +8729,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Divorced MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9143,7 +9143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9152,7 +9152,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9161,7 +9161,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9171,7 +9171,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9301,7 +9301,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9311,7 +9311,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Separated MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9725,7 +9725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9734,7 +9734,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9743,7 +9743,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9753,7 +9753,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9883,7 +9883,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -9893,7 +9893,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Margin of Error!!Never married MOE!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10833,7 +10833,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10842,7 +10842,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10851,7 +10851,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10861,7 +10861,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -10991,7 +10991,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11001,7 +11001,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11415,7 +11415,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11424,7 +11424,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11433,7 +11433,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11443,7 +11443,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11573,7 +11573,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11583,7 +11583,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -11997,7 +11997,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12006,7 +12006,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12015,7 +12015,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12025,7 +12025,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12155,7 +12155,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12165,7 +12165,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12579,7 +12579,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12588,7 +12588,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12597,7 +12597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12607,7 +12607,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12737,7 +12737,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -12747,7 +12747,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13161,7 +13161,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13170,7 +13170,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13179,7 +13179,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13189,7 +13189,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13319,7 +13319,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -13329,7 +13329,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14269,7 +14269,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14278,7 +14278,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14287,7 +14287,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14297,7 +14297,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14427,7 +14427,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14437,7 +14437,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14851,7 +14851,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14860,7 +14860,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14869,7 +14869,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -14879,7 +14879,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15009,7 +15009,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15019,7 +15019,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15433,7 +15433,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15442,7 +15442,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15451,7 +15451,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15461,7 +15461,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15591,7 +15591,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -15601,7 +15601,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16015,7 +16015,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16024,7 +16024,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16033,7 +16033,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16043,7 +16043,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16173,7 +16173,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16183,7 +16183,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16597,7 +16597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16606,7 +16606,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16615,7 +16615,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16625,7 +16625,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16755,7 +16755,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -16765,7 +16765,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17741,7 +17741,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17750,7 +17750,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17759,7 +17759,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17769,7 +17769,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17899,7 +17899,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -17909,7 +17909,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18363,7 +18363,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18372,7 +18372,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18381,7 +18381,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18391,7 +18391,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18521,7 +18521,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18531,7 +18531,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18985,7 +18985,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -18994,7 +18994,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19003,7 +19003,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19013,7 +19013,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19143,7 +19143,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19153,7 +19153,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19607,7 +19607,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19616,7 +19616,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19625,7 +19625,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19635,7 +19635,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19765,7 +19765,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -19775,7 +19775,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20229,7 +20229,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20238,7 +20238,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20247,7 +20247,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20257,7 +20257,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20387,7 +20387,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -20397,7 +20397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21413,7 +21413,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21422,7 +21422,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21431,7 +21431,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21441,7 +21441,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21571,7 +21571,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -21581,7 +21581,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22035,7 +22035,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22044,7 +22044,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22053,7 +22053,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22063,7 +22063,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22193,7 +22193,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22203,7 +22203,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22657,7 +22657,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22666,7 +22666,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22675,7 +22675,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22685,7 +22685,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22815,7 +22815,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -22825,7 +22825,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23279,7 +23279,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23288,7 +23288,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23297,7 +23297,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23307,7 +23307,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23437,7 +23437,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23447,7 +23447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23901,7 +23901,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23910,7 +23910,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23919,7 +23919,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -23929,7 +23929,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -24059,7 +24059,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -24069,7 +24069,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25085,7 +25085,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25094,7 +25094,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25103,7 +25103,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25113,7 +25113,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25243,7 +25243,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25253,7 +25253,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25707,7 +25707,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25716,7 +25716,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25725,7 +25725,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25735,7 +25735,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25865,7 +25865,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -25875,7 +25875,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26329,7 +26329,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26338,7 +26338,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26347,7 +26347,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26357,7 +26357,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26487,7 +26487,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26497,7 +26497,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26951,7 +26951,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26960,7 +26960,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26969,7 +26969,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -26979,7 +26979,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27109,7 +27109,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27119,7 +27119,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27573,7 +27573,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27582,7 +27582,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27591,7 +27591,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27601,7 +27601,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27731,7 +27731,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -27741,7 +27741,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28757,7 +28757,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28766,7 +28766,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28775,7 +28775,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28785,7 +28785,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28915,7 +28915,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -28925,7 +28925,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29379,7 +29379,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29388,7 +29388,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29397,7 +29397,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29407,7 +29407,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29537,7 +29537,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -29547,7 +29547,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30001,7 +30001,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30010,7 +30010,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30019,7 +30019,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30029,7 +30029,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30159,7 +30159,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30169,7 +30169,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30623,7 +30623,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30632,7 +30632,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30641,7 +30641,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30651,7 +30651,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30781,7 +30781,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -30791,7 +30791,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31245,7 +31245,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31254,7 +31254,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31263,7 +31263,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31273,7 +31273,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31403,7 +31403,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -31413,7 +31413,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32429,7 +32429,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32438,7 +32438,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32447,7 +32447,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32457,7 +32457,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Male_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32587,7 +32587,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -32597,7 +32597,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Now married (except separated)!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_MarriedAndNotSeparated", + "Node": "dcid:MarginOfError_Count_Person_Female_MarriedAndNotSeparated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33051,7 +33051,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:Count_Person_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33060,7 +33060,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33069,7 +33069,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:Count_Person_Male_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33079,7 +33079,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Male_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33209,7 +33209,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:Count_Person_Female_Widowed", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33219,7 +33219,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Widowed!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Widowed", + "Node": "dcid:MarginOfError_Count_Person_Female_Widowed", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33673,7 +33673,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33682,7 +33682,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:Count_Person_Male_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33692,7 +33692,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Male_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33822,7 +33822,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:Count_Person_Female_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33832,7 +33832,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Divorced", + "Node": "dcid:MarginOfError_Count_Person_Female_Divorced", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -33942,7 +33942,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Divorced!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Divorced", + "Node": "dcid:Count_Person_Divorced", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34275,7 +34275,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Separated", + "Node": "dcid:Count_Person_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34284,7 +34284,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Separated", + "Node": "dcid:MarginOfError_Count_Person_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34293,7 +34293,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:Count_Person_Male_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34303,7 +34303,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_Separated", + "Node": "dcid:MarginOfError_Count_Person_Male_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34453,7 +34453,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:Count_Person_Female_Separated", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34463,7 +34463,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Separated!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_Separated", + "Node": "dcid:MarginOfError_Count_Person_Female_Separated", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34917,7 +34917,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!Population 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:Count_Person_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34926,7 +34926,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!Population 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34935,7 +34935,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:Count_Person_Male_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -34945,7 +34945,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!AGE AND SEX!!Males 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Male_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Male_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -35075,7 +35075,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Estimate!!65 years and over!!Females 15 years and over": { - "Node": "dcid:Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:Count_Person_Female_NeverMarried", "statType": "dcs:measuredValue", "measuredProperty": "dcs:count", "age": "[15 - Years]", @@ -35085,7 +35085,7 @@ "typeOf": "dcs:StatisticalVariable" }, "Never married!!Margin of Error!!65 years and over!!Females 15 years and over": { - "Node": "dcid:MarginOfError_Count_Person_15OrMoreYears_Female_NeverMarried", + "Node": "dcid:MarginOfError_Count_Person_Female_NeverMarried", "statType": "dcs:marginOfError", "measuredProperty": "dcs:count", "age": "[15 - Years]", From 476696dfa330e4b2fcb1c52017ec336e335eb41a Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Tue, 4 Aug 2026 12:42:40 +0000 Subject: [PATCH 14/16] fixing cloudbuild failures --- util/dc_api_wrapper_test.py | 12 ++++++- util/latlng_recon_service_test.py | 52 +++++++++++++++++++++++++++++-- 2 files changed, 61 insertions(+), 3 deletions(-) diff --git a/util/dc_api_wrapper_test.py b/util/dc_api_wrapper_test.py index 4b0601158e..8e04517a4f 100644 --- a/util/dc_api_wrapper_test.py +++ b/util/dc_api_wrapper_test.py @@ -244,8 +244,18 @@ def test_dc_api_resolve_placeid(self): self.assertEqual(response['ChIJT3IGqvxznW4Rqgw7pv9zYz8'], 'wikidataId/Q9727') - def test_dc_api_resolve_latlng(self): + @mock.patch('dc_api_wrapper.request_url') + def test_dc_api_resolve_latlng(self, mock_request_url): """Test API wrapper for latlng resolution.""" + mock_request_url.return_value = { + "entities": [{ + "node": "37.42#-122.08", + "candidates": [{ + "dcid": "geoId/0649670", + "dominantType": "City" + }] + }] + } latlngs = [{'latitude': 37.42, 'longitude': -122.08}] response = dc_api.dc_api_resolve_latlng(latlngs) diff --git a/util/latlng_recon_service_test.py b/util/latlng_recon_service_test.py index a7c858d9a7..0a639c8d76 100644 --- a/util/latlng_recon_service_test.py +++ b/util/latlng_recon_service_test.py @@ -34,7 +34,35 @@ def assert_list_contains(self, superset_list, subset_list): f"The following items were expected but not found: {sorted(list(missing_items))}" ) - def test_basic(self): + @mock.patch('util.latlng_recon_service.dc_api_resolve_latlng') + def test_basic(self, mock_dc_api_resolve_latlng): + mock_dc_api_resolve_latlng.return_value = { + 'placeCoordinates': [ + { + 'latitude': 37.391, + 'longitude': -122.081, + 'placeDcids': [ + 'zip/94041', 'ipcc_50/37.25_-122.25_USA', 'geoId/sch0626280', + 'geoId/0649670', 'geoId/0618', 'geoId/0608592830', + 'geoId/060855096001', 'geoId/06085509600', 'geoId/06085', + 'geoId/06', 'country/USA' + ] + }, + { + 'latitude': 12.998, + 'longitude': 80.272, + 'placeDcids': [ + 'wikidataId/Q15116', 'wikidataId/Q1445', 'ipcc_50/12.75_80.25_IND', + 'country/IND' + ] + }, + { + 'latitude': 37.700, + 'longitude': -123.015, + 'placeDcids': [] + } + ] + } idmap_in = { 'cascal_mtv': (37.391, -122.081), 'besant_beach_chennai': (12.998, 80.272), @@ -53,7 +81,27 @@ def test_basic(self): ]) self.assertEqual(idmap_out['farallon_islands'], []) - def test_filter(self): + @mock.patch('util.latlng_recon_service.dc_api_resolve_latlng') + def test_filter(self, mock_dc_api_resolve_latlng): + mock_dc_api_resolve_latlng.return_value = { + 'placeCoordinates': [ + { + 'latitude': 37.391, + 'longitude': -122.081, + 'placeDcids': [ + 'zip/94041', 'ipcc_50/37.25_-122.25_USA', 'geoId/sch0626280', + 'geoId/0649670', 'geoId/0618', 'geoId/0608592830', + 'geoId/060855096001', 'geoId/06085509600', 'geoId/06085', + 'geoId/06', 'country/USA' + ] + }, + { + 'latitude': 37.700, + 'longitude': -123.015, + 'placeDcids': [] + } + ] + } idmap_in = { 'cascal_mtv': (37.391, -122.081), 'farallon_islands': (37.700, -123.015) From 1f3b0142f48c8fa4d87ddc44d21455b77106b659 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Tue, 4 Aug 2026 13:19:52 +0000 Subject: [PATCH 15/16] fixing cloudbuild failures --- util/dc_api_wrapper_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/dc_api_wrapper_test.py b/util/dc_api_wrapper_test.py index 8e04517a4f..4afcb2c9ab 100644 --- a/util/dc_api_wrapper_test.py +++ b/util/dc_api_wrapper_test.py @@ -249,7 +249,8 @@ def test_dc_api_resolve_latlng(self, mock_request_url): """Test API wrapper for latlng resolution.""" mock_request_url.return_value = { "entities": [{ - "node": "37.42#-122.08", + "node": + "37.42#-122.08", "candidates": [{ "dcid": "geoId/0649670", "dominantType": "City" From 80b31c848657280db933aec9e3e3009c30867074 Mon Sep 17 00:00:00 2001 From: Tarun Bali Date: Wed, 5 Aug 2026 02:53:12 +0000 Subject: [PATCH 16/16] fixing cloudbuild failures --- util/latlng_recon_service_test.py | 85 ++++++++++++++++--------------- 1 file changed, 43 insertions(+), 42 deletions(-) diff --git a/util/latlng_recon_service_test.py b/util/latlng_recon_service_test.py index 0a639c8d76..7f2a24bf11 100644 --- a/util/latlng_recon_service_test.py +++ b/util/latlng_recon_service_test.py @@ -37,31 +37,32 @@ def assert_list_contains(self, superset_list, subset_list): @mock.patch('util.latlng_recon_service.dc_api_resolve_latlng') def test_basic(self, mock_dc_api_resolve_latlng): mock_dc_api_resolve_latlng.return_value = { - 'placeCoordinates': [ - { - 'latitude': 37.391, - 'longitude': -122.081, - 'placeDcids': [ - 'zip/94041', 'ipcc_50/37.25_-122.25_USA', 'geoId/sch0626280', - 'geoId/0649670', 'geoId/0618', 'geoId/0608592830', - 'geoId/060855096001', 'geoId/06085509600', 'geoId/06085', - 'geoId/06', 'country/USA' - ] - }, - { - 'latitude': 12.998, - 'longitude': 80.272, - 'placeDcids': [ - 'wikidataId/Q15116', 'wikidataId/Q1445', 'ipcc_50/12.75_80.25_IND', - 'country/IND' - ] - }, - { - 'latitude': 37.700, - 'longitude': -123.015, - 'placeDcids': [] - } - ] + 'placeCoordinates': [{ + 'latitude': + 37.391, + 'longitude': + -122.081, + 'placeDcids': [ + 'zip/94041', 'ipcc_50/37.25_-122.25_USA', + 'geoId/sch0626280', 'geoId/0649670', 'geoId/0618', + 'geoId/0608592830', 'geoId/060855096001', + 'geoId/06085509600', 'geoId/06085', 'geoId/06', + 'country/USA' + ] + }, { + 'latitude': + 12.998, + 'longitude': + 80.272, + 'placeDcids': [ + 'wikidataId/Q15116', 'wikidataId/Q1445', + 'ipcc_50/12.75_80.25_IND', 'country/IND' + ] + }, { + 'latitude': 37.700, + 'longitude': -123.015, + 'placeDcids': [] + }] } idmap_in = { 'cascal_mtv': (37.391, -122.081), @@ -84,23 +85,23 @@ def test_basic(self, mock_dc_api_resolve_latlng): @mock.patch('util.latlng_recon_service.dc_api_resolve_latlng') def test_filter(self, mock_dc_api_resolve_latlng): mock_dc_api_resolve_latlng.return_value = { - 'placeCoordinates': [ - { - 'latitude': 37.391, - 'longitude': -122.081, - 'placeDcids': [ - 'zip/94041', 'ipcc_50/37.25_-122.25_USA', 'geoId/sch0626280', - 'geoId/0649670', 'geoId/0618', 'geoId/0608592830', - 'geoId/060855096001', 'geoId/06085509600', 'geoId/06085', - 'geoId/06', 'country/USA' - ] - }, - { - 'latitude': 37.700, - 'longitude': -123.015, - 'placeDcids': [] - } - ] + 'placeCoordinates': [{ + 'latitude': + 37.391, + 'longitude': + -122.081, + 'placeDcids': [ + 'zip/94041', 'ipcc_50/37.25_-122.25_USA', + 'geoId/sch0626280', 'geoId/0649670', 'geoId/0618', + 'geoId/0608592830', 'geoId/060855096001', + 'geoId/06085509600', 'geoId/06085', 'geoId/06', + 'country/USA' + ] + }, { + 'latitude': 37.700, + 'longitude': -123.015, + 'placeDcids': [] + }] } idmap_in = { 'cascal_mtv': (37.391, -122.081),