100+ datasets found
  1. Cost of living index in the U.S. 2024, by state

    • statista.com
    Updated May 27, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2025). Cost of living index in the U.S. 2024, by state [Dataset]. https://www.statista.com/statistics/1240947/cost-of-living-index-usa-by-state/
    Explore at:
    Dataset updated
    May 27, 2025
    Dataset authored and provided by
    Statistahttp://statista.com/
    Time period covered
    2024
    Area covered
    United States
    Description

    West Virginia and Kansas had the lowest cost of living across all U.S. states, with composite costs being half of those found in Hawaii. This was according to a composite index that compares prices for various goods and services on a state-by-state basis. In West Virginia, the cost of living index amounted to **** — well below the national benchmark of 100. Virginia— which had an index value of ***** — was only slightly above that benchmark. Expensive places to live included Hawaii, Massachusetts, and California. Housing costs in the U.S. Housing is usually the highest expense in a household’s budget. In 2023, the average house sold for approximately ******* U.S. dollars, but house prices in the Northeast and West regions were significantly higher. Conversely, the South had some of the least expensive housing. In West Virginia, Mississippi, and Louisiana, the median price of the typical single-family home was less than ******* U.S. dollars. That makes living expenses in these states significantly lower than in states such as Hawaii and California, where housing is much pricier. What other expenses affect the cost of living? Utility costs such as electricity, natural gas, water, and internet also influence the cost of living. In Alaska, Hawaii, and Connecticut, the average monthly utility cost exceeded *** U.S. dollars. That was because of the significantly higher prices for electricity and natural gas in these states.

  2. d

    Living Wage

    • catalog.data.gov
    Updated Nov 27, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    California Department of Public Health (2024). Living Wage [Dataset]. https://catalog.data.gov/dataset/living-wage-72c58
    Explore at:
    Dataset updated
    Nov 27, 2024
    Dataset provided by
    California Department of Public Health
    Description

    This table contains data on the living wage and the percent of families with incomes below the living wage for California, its counties, regions and cities/towns. Living wage is the wage needed to cover basic family expenses (basic needs budget) plus all relevant taxes; it does not include publicly provided income or housing assistance. The percent of families below the living wage was calculated using data from the Living Wage Calculator and the U.S. Census Bureau, American Community Survey. The table is part of a series of indicators in the Healthy Communities Data and Indicators Project of the Office of Health Equity. The living wage is the wage or annual income that covers the cost of the bare necessities of life for a worker and his/her family. These necessities include housing, transportation, food, childcare, health care, and payment of taxes. Low income populations and non-white race/ethnic have disproportionately lower wages, poorer housing, and higher levels of food insecurity. More information about the data table and a data dictionary can be found in the About/Attachments section.

  3. H

    Consumer Expenditure Survey (CE)

    • dataverse.harvard.edu
    Updated May 30, 2013
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Anthony Damico (2013). Consumer Expenditure Survey (CE) [Dataset]. http://doi.org/10.7910/DVN/UTNJAH
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 30, 2013
    Dataset provided by
    Harvard Dataverse
    Authors
    Anthony Damico
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    analyze the consumer expenditure survey (ce) with r the consumer expenditure survey (ce) is the primo data source to understand how americans spend money. participating households keep a running diary about every little purchase over the year. those diaries are then summed up into precise expenditure categories. how else are you gonna know that the average american household spent $34 (±2) on bacon, $826 (±17) on cellular phones, and $13 (±2) on digital e-readers in 2011? an integral component of the market basket calculation in the consumer price index, this survey recently became available as public-use microdata and they're slowly releasing historical files back to 1996. hooray! for a t aste of what's possible with ce data, look at the quick tables listed on their main page - these tables contain approximately a bazillion different expenditure categories broken down by demographic groups. guess what? i just learned that americans living in households with $5,000 to $9,999 of annual income spent an average of $283 (±90) on pets, toys, hobbies, and playground equipment (pdf page 3). you can often get close to your statistic of interest from these web tables. but say you wanted to look at domestic pet expenditure among only households with children between 12 and 17 years old. another one of the thirteen web tables - the consumer unit composition table - shows a few different breakouts of households with kids, but none matching that exact population of interest. the bureau of labor statistics (bls) (the survey's designers) and the census bureau (the survey's administrators) have provided plenty of the major statistics and breakouts for you, but they're not psychic. if you want to comb through this data for specific expenditure categories broken out by a you-defined segment of the united states' population, then let a little r into your life. fun starts now. fair warning: only analyze t he consumer expenditure survey if you are nerd to the core. the microdata ship with two different survey types (interview and diary), each containing five or six quarterly table formats that need to be stacked, merged, and manipulated prior to a methodologically-correct analysis. the scripts in this repository contain examples to prepare 'em all, just be advised that magnificent data like this will never be no-assembly-required. the folks at bls have posted an excellent summary of what's av ailable - read it before anything else. after that, read the getting started guide. don't skim. a few of the descriptions below refer to sas programs provided by the bureau of labor statistics. you'll find these in the C:\My Directory\CES\2011\docs directory after you run the download program. this new github repository contains three scripts: 2010-2011 - download all microdata.R lo op through every year and download every file hosted on the bls's ce ftp site import each of the comma-separated value files into r with read.csv depending on user-settings, save each table as an r data file (.rda) or stat a-readable file (.dta) 2011 fmly intrvw - analysis examples.R load the r data files (.rda) necessary to create the 'fmly' table shown in the ce macros program documentation.doc file construct that 'fmly' table, using five quarters of interviews (q1 2011 thru q1 2012) initiate a replicate-weighted survey design object perform some lovely li'l analysis examples replicate the %mean_variance() macro found in "ce macros.sas" and provide some examples of calculating descriptive statistics using unimputed variables replicate the %compare_groups() macro found in "ce macros.sas" and provide some examples of performing t -tests using unimputed variables create an rsqlite database (to minimize ram usage) containing the five imputed variable files, after identifying which variables were imputed based on pdf page 3 of the user's guide to income imputation initiate a replicate-weighted, database-backed, multiply-imputed survey design object perform a few additional analyses that highlight the modified syntax required for multiply-imputed survey designs replicate the %mean_variance() macro found in "ce macros.sas" and provide some examples of calculating descriptive statistics using imputed variables repl icate the %compare_groups() macro found in "ce macros.sas" and provide some examples of performing t-tests using imputed variables replicate the %proc_reg() and %proc_logistic() macros found in "ce macros.sas" and provide some examples of regressions and logistic regressions using both unimputed and imputed variables replicate integrated mean and se.R match each step in the bls-provided sas program "integr ated mean and se.sas" but with r instead of sas create an rsqlite database when the expenditure table gets too large for older computers to handle in ram export a table "2011 integrated mean and se.csv" that exactly matches the contents of the sas-produced "2011 integrated mean and se.lst" text file click here to view these three scripts for...

  4. Wildfire Risk to Communities Housing Unit Density (Image Service)

    • catalog.data.gov
    • resilience.climate.gov
    • +4more
    Updated Sep 2, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Forest Service (2025). Wildfire Risk to Communities Housing Unit Density (Image Service) [Dataset]. https://catalog.data.gov/dataset/wildfire-risk-to-communities-housing-unit-density-image-service-fac22
    Explore at:
    Dataset updated
    Sep 2, 2025
    Dataset provided by
    U.S. Department of Agriculture Forest Servicehttp://fs.fed.us/
    Description

    The data included in this publication depict components of wildfire risk specifically for populated areas in the United States. These datasets represent where people live in the United States and the in situ risk from wildfire, i.e., the risk at the location where the adverse effects take place.National wildfire hazard datasets of annual burn probability and fire intensity, generated by the USDA Forest Service, Rocky Mountain Research Station and Pyrologix LLC, form the foundation of the Wildfire Risk to Communities data. Vegetation and wildland fuels data from LANDFIRE 2020 (version 2.2.0) were used as input to two different but related geospatial fire simulation systems. Annual burn probability was produced with the USFS geospatial fire simulator (FSim) at a relatively coarse cell size of 270 meters (m). To bring the burn probability raster data down to a finer resolution more useful for assessing hazard and risk to communities, we upsampled them to the native 30 m resolution of the LANDFIRE fuel and vegetation data. In this upsampling process, we also spread values of modeled burn probability into developed areas represented in LANDFIRE fuels data as non-burnable. Burn probability rasters represent landscape conditions as of the end of 2020. Fire intensity characteristics were modeled at 30 m resolution using a process that performs a comprehensive set of FlamMap runs spanning the full range of weather-related characteristics that occur during a fire season and then integrates those runs into a variety of results based on the likelihood of those weather types occurring. Before the fire intensity modeling, the LANDFIRE 2020 data were updated to reflect fuels disturbances occurring in 2021 and 2022. As such, the fire intensity datasets represent landscape conditions as of the end of 2022. The data products in this publication that represent where people live, reflect 2021 estimates of housing unit and population counts from the U.S. Census Bureau, combined with building footprint data from Onegeo and USA Structures, both reflecting 2022 conditions.The specific raster datasets included in this publication include:Building Count: Building Count is a 30-m raster representing the count of buildings in the building footprint dataset located within each 30-m pixel.Building Density: Building Density is a 30-m raster representing the density of buildings in the building footprint dataset (buildings per square kilometer [km²]). Building Coverage: Building Coverage is a 30-m raster depicting the percentage of habitable land area covered by building footprints.Population Count (PopCount): PopCount is a 30-m raster with pixel values representing residential population count (persons) in each pixel.Population Density (PopDen): PopDen is a 30-m raster of residential population density (people/km²).Housing Unit Count (HUCount): HUCount is a 30-m raster representing the number of housing units in each pixel.Housing Unit Density (HUDen): HUDen is a 30-m raster of housing-unit density (housing units/km²).Housing Unit Exposure (HUExposure): HUExposure is a 30-m raster that represents the expected number of housing units within a pixel potentially exposed to wildfire in a year. This is a long-term annual average and not intended to represent the actual number of housing units exposed in any specific year.Housing Unit Impact (HUImpact): HUImpact is a 30-m raster that represents the relative potential impact of fire to housing units at any pixel, if a fire were to occur. It is an index that incorporates the general consequences of fire on a home as a function of fire intensity and uses flame length probabilities from wildfire modeling to capture likely intensity of fire.Housing Unit Risk (HURisk): HURisk is a 30-m raster that integrates all four primary elements of wildfire risk - likelihood, intensity, susceptibility, and exposure - on pixels where housing unit density is greater than zero.Additional methodology documentation is provided with the data publication download. Metadata and Downloads: (https://www.fs.usda.gov/rds/archive/catalog/RDS-2020-0060-2).Note: Pixel values in this image service have been altered from the original raster dataset due to data requirements in web services. The service is intended primarily for data visualization. Relative values and spatial patterns have been largely preserved in the service, but users are encouraged to download the source data for quantitative analysis.

  5. T

    United States Wages and Salaries Growth

    • tradingeconomics.com
    • pl.tradingeconomics.com
    • +13more
    csv, excel, json, xml
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    TRADING ECONOMICS, United States Wages and Salaries Growth [Dataset]. https://tradingeconomics.com/united-states/wage-growth
    Explore at:
    csv, json, xml, excelAvailable download formats
    Dataset authored and provided by
    TRADING ECONOMICS
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Time period covered
    Jan 31, 1960 - Jul 31, 2025
    Area covered
    United States
    Description

    Wages in the United States increased 5.35 percent in July of 2025 over the same month in the previous year. This dataset provides the latest reported value for - United States Wages and Salaries Growth - plus previous releases, historical high and low, short-term forecast and long-term prediction, economic calendar, survey consensus and news.

  6. H

    American Community Survey (ACS)

    • dataverse.harvard.edu
    Updated May 30, 2013
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Anthony Damico (2013). American Community Survey (ACS) [Dataset]. http://doi.org/10.7910/DVN/DKI9L4
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 30, 2013
    Dataset provided by
    Harvard Dataverse
    Authors
    Anthony Damico
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    analyze the american community survey (acs) with r and monetdb experimental. think of the american community survey (acs) as the united states' census for off-years - the ones that don't end in zero. every year, one percent of all americans respond, making it the largest complex sample administered by the u.s. government (the decennial census has a much broader reach, but since it attempts to contact 100% of the population, it's not a sur vey). the acs asks how people live and although the questionnaire only includes about three hundred questions on demography, income, insurance, it's often accurate at sub-state geographies and - depending how many years pooled - down to small counties. households are the sampling unit, and once a household gets selected for inclusion, all of its residents respond to the survey. this allows household-level data (like home ownership) to be collected more efficiently and lets researchers examine family structure. the census bureau runs and finances this behemoth, of course. the dow nloadable american community survey ships as two distinct household-level and person-level comma-separated value (.csv) files. merging the two just rectangulates the data, since each person in the person-file has exactly one matching record in the household-file. for analyses of small, smaller, and microscopic geographic areas, choose one-, three-, or fiv e-year pooled files. use as few pooled years as you can, unless you like sentences that start with, "over the period of 2006 - 2010, the average american ... [insert yer findings here]." rather than processing the acs public use microdata sample line-by-line, the r language brazenly reads everything into memory by default. to prevent overloading your computer, dr. thomas lumley wrote the sqlsurvey package principally to deal with t his ram-gobbling monster. if you're already familiar with syntax used for the survey package, be patient and read the sqlsurvey examples carefully when something doesn't behave as you expect it to - some sqlsurvey commands require a different structure (i.e. svyby gets called through svymean) and others might not exist anytime soon (like svyolr). gimme some good news: sqlsurvey uses ultra-fast monetdb (click here for speed tests), so follow the monetdb installation instructions before running this acs code. monetdb imports, writes, recodes data slowly, but reads it hyper-fast . a magnificent trade-off: data exploration typically requires you to think, send an analysis command, think some more, send another query, repeat. importation scripts (especially the ones i've already written for you) can be left running overnight sans hand-holding. the acs weights generalize to the whole united states population including individuals living in group quarters, but non-residential respondents get an abridged questionnaire, so most (not all) analysts exclude records with a relp variable of 16 or 17 right off the bat. this new github repository contains four scripts: 2005-2011 - download all microdata.R create the batch (.bat) file needed to initiate the monet database in the future download, unzip, and import each file for every year and size specified by the user create and save household- and merged/person-level replicate weight complex sample designs create a well-documented block of code to re-initiate the monet db server in the future fair warning: this full script takes a loooong time. run it friday afternoon, commune with nature for the weekend, and if you've got a fast processor and speedy internet connection, monday morning it should be ready for action. otherwise, either download only the years and sizes you need or - if you gotta have 'em all - run it, minimize it, and then don't disturb it for a week. 2011 single-year - analysis e xamples.R run the well-documented block of code to re-initiate the monetdb server load the r data file (.rda) containing the replicate weight designs for the single-year 2011 file perform the standard repertoire of analysis examples, only this time using sqlsurvey functions 2011 single-year - variable reco de example.R run the well-documented block of code to re-initiate the monetdb server copy the single-year 2011 table to maintain the pristine original add a new age category variable by hand add a new age category variable systematically re-create then save the sqlsurvey replicate weight complex sample design on this new table close everything, then load everything back up in a fresh instance of r replicate a few of the census statistics. no muss, no fuss replicate census estimates - 2011.R run the well-documented block of code to re-initiate the monetdb server load the r data file (.rda) containing the replicate weight designs for the single-year 2011 file match every nation wide statistic on the census bureau's estimates page, using sqlsurvey functions click here to view these four scripts for more detail about the american community survey (acs), visit: < ul> the us census...

  7. US Broadband Usage Across Counties

    • kaggle.com
    Updated Jan 6, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    The Devastator (2023). US Broadband Usage Across Counties [Dataset]. https://www.kaggle.com/datasets/thedevastator/us-broadband-usage-across-counties-and-zip-codes
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jan 6, 2023
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    The Devastator
    Area covered
    United States
    Description

    US Broadband Usage Across Counties

    Utilizing Microsoft's Data to Estimate Access

    By Amber Thomas [source]

    About this dataset

    This dataset provides an estimation of broadband usage in the United States, focusing on how many people have access to broadband and how many are actually using it at broadband speeds. Through data collected by Microsoft from our services, including package size and total time of download, we can estimate the throughput speed of devices connecting to the internet across zip codes and counties.

    According to Federal Communications Commission (FCC) estimates, 14.5 million people don't have access to any kind of broadband connection. This data set aims to address this contrast between those with estimated availability but no actual use by providing more accurate usage numbers downscaled to county and zip code levels. Who gets counted as having access is vastly important -- it determines who gets included in public funding opportunities dedicated solely toward closing this digital divide gap. The implications can be huge: millions around this country could remain invisible if these number aren't accurately reported or used properly in decision-making processes.

    This dataset includes aggregated information about these locations with less than 20 devices for increased accuracy when estimating Broadband Usage in the United States-- allowing others to use it for developing solutions that improve internet access or label problem areas accurately where no real or reliable connectivity exists among citizens within communities large and small throughout the US mainland.. Please review the license terms before using these data so that you may adhere appropriately with stipulations set forth under Microsoft's Open Use Of Data Agreement v1.0 agreement prior to utilizing this dataset for your needs-- both professional and educational endeavors alike!

    More Datasets

    For more datasets, click here.

    Featured Notebooks

    • 🚨 Your notebook can be here! 🚨!

    How to use the dataset

    How to Use the US Broadband Usage Dataset

    This dataset provides broadband usage estimates in the United States by county and zip code. It is ideally suited for research into how broadband connects households, towns and cities. Understanding this information is vital for closing existing disparities in access to high-speed internet, and for devising strategies for making sure all Americans can stay connected in a digital world.

    The dataset contains six columns: - County – The name of the county for which usage statistics are provided. - Zip Code (5-Digit) – The 5-digit zip code from which usage data was collected from within that county or metropolitan area/micro area/divisions within states as reported by the US Census Bureau in 2018[2].
    - Population (Households) – Estimated number of households defined according to [3] based on data from the US Census Bureau American Community Survey's 5 Year Estimates[4].
    - Average Throughput (Mbps)- Average Mbps download speed derived from a combination of data collected anonymous devices connected through Microsoft services such as Windows Update, Office 365, Xbox Live Core Services, etc.[5]
    - Percent Fast (> 25 Mbps)- Percentage of machines with throughput greater than 25 Mbps calculated using [6]. 6) Percent Slow (< 3 Mbps)- Percentage of machines with throughput less than 3Mbps calculated using [7].

    Research Ideas

    • Targeting marketing campaigns based on broadband use. Companies can use the geographic and demographic data in this dataset to create targeted advertising campaigns that are tailored to individuals living in areas where broadband access is scarce or lacking.
    • Creating an educational platform for those without reliable access to broadband internet. By leveraging existing technologies such as satellite internet, media streaming services like Netflix, and platforms such as Khan Academy or EdX, those with limited access could gain access to new educational options from home.
    • Establishing public-private partnerships between local governments and telecom providers need better data about gaps in service coverage and usage levels in order to make decisions about investments into new infrastructure buildouts for better connectivity options for rural communities

    Acknowledgements

    If you use this dataset in your research, please credit the original authors. Data Source

    License

    See the dataset description for more information.

    Columns

    File: broadband_data_2020October.csv

    Acknowledgements

    If you use this dataset in your research,...

  8. Vital Signs: Poverty - Bay Area

    • data.bayareametro.gov
    • open-data-demo.mtc.ca.gov
    csv, xlsx, xml
    Updated Jan 8, 2019
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Census Bureau (2019). Vital Signs: Poverty - Bay Area [Dataset]. https://data.bayareametro.gov/dataset/Vital-Signs-Poverty-Bay-Area/38fe-vd33
    Explore at:
    xml, csv, xlsxAvailable download formats
    Dataset updated
    Jan 8, 2019
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Authors
    U.S. Census Bureau
    Area covered
    San Francisco Bay Area
    Description

    VITAL SIGNS INDICATOR Poverty (EQ5)

    FULL MEASURE NAME The share of the population living in households that earn less than 200 percent of the federal poverty limit

    LAST UPDATED December 2018

    DESCRIPTION Poverty refers to the share of the population living in households that earn less than 200 percent of the federal poverty limit, which varies based on the number of individuals in a given household. It reflects the number of individuals who are economically struggling due to low household income levels.

    DATA SOURCE U.S Census Bureau: Decennial Census http://www.nhgis.org (1980-1990) http://factfinder2.census.gov (2000)

    U.S. Census Bureau: American Community Survey Form C17002 (2006-2017) http://api.census.gov

    METHODOLOGY NOTES (across all datasets for this indicator) The U.S. Census Bureau defines a national poverty level (or household income) that varies by household size, number of children in a household, and age of householder. The national poverty level does not vary geographically even though cost of living is different across the United States. For the Bay Area, where cost of living is high and incomes are correspondingly high, an appropriate poverty level is 200% of poverty or twice the national poverty level, consistent with what was used for past equity work at MTC and ABAG. For comparison, however, both the national and 200% poverty levels are presented.

    For Vital Signs, the poverty rate is defined as the number of people (including children) living below twice the poverty level divided by the number of people for whom poverty status is determined. Poverty rates do not include unrelated individuals below 15 years old or people who live in the following: institutionalized group quarters, college dormitories, military barracks, and situations without conventional housing. The household income definitions for poverty change each year to reflect inflation. The official poverty definition uses money income before taxes and does not include capital gains or noncash benefits (such as public housing, Medicaid, and food stamps). For the national poverty level definitions by year, see: https://www.census.gov/hhes/www/poverty/data/threshld/index.html For an explanation on how the Census Bureau measures poverty, see: https://www.census.gov/hhes/www/poverty/about/overview/measure.html

    For the American Community Survey datasets, 1-year data was used for region, county, and metro areas whereas 5-year rolling average data was used for city and census tract.

    To be consistent across metropolitan areas, the poverty definition for non-Bay Area metros is twice the national poverty level. Data were not adjusted for varying income and cost of living levels across the metropolitan areas.

  9. T

    Eggs US - Price Data

    • tradingeconomics.com
    • de.tradingeconomics.com
    • +13more
    csv, excel, json, xml
    Updated Aug 13, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    TRADING ECONOMICS (2025). Eggs US - Price Data [Dataset]. https://tradingeconomics.com/commodity/eggs-us
    Explore at:
    excel, csv, xml, jsonAvailable download formats
    Dataset updated
    Aug 13, 2025
    Dataset authored and provided by
    TRADING ECONOMICS
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Time period covered
    May 25, 2012 - Sep 18, 2025
    Area covered
    World
    Description

    Eggs US fell to 1.96 USD/Dozen on September 18, 2025, down 2.51% from the previous day. Over the past month, Eggs US's price has fallen 10.62%, and is down 34.08% compared to the same time last year, according to trading on a contract for difference (CFD) that tracks the benchmark market for this commodity. This dataset includes a chart with historical data for Eggs US.

  10. g

    U.S. Bureau of Labor Statistics, All Occupational Wage Estimates, USA, May...

    • geocommons.com
    Updated Apr 29, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data (2008). U.S. Bureau of Labor Statistics, All Occupational Wage Estimates, USA, May 2006 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    Apr 29, 2008
    Dataset provided by
    U.S. Bureau of Labor Statistics
    data
    Description

    This data set represents the aggregate total occupational earnings by state. This includes the mean and median hourly wage, as well as the mean annual salary for each state. http://www.bls.gov/OES/

  11. Vital Signs: Poverty - by city

    • data.bayareametro.gov
    • open-data-demo.mtc.ca.gov
    csv, xlsx, xml
    Updated Dec 12, 2018
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Census Bureau (2018). Vital Signs: Poverty - by city [Dataset]. https://data.bayareametro.gov/dataset/Vital-Signs-Poverty-by-city/if2n-3uk8
    Explore at:
    csv, xlsx, xmlAvailable download formats
    Dataset updated
    Dec 12, 2018
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Authors
    U.S. Census Bureau
    Description

    VITAL SIGNS INDICATOR Poverty (EQ5)

    FULL MEASURE NAME The share of the population living in households that earn less than 200 percent of the federal poverty limit

    LAST UPDATED December 2018

    DESCRIPTION Poverty refers to the share of the population living in households that earn less than 200 percent of the federal poverty limit, which varies based on the number of individuals in a given household. It reflects the number of individuals who are economically struggling due to low household income levels.

    DATA SOURCE U.S Census Bureau: Decennial Census http://www.nhgis.org (1980-1990) http://factfinder2.census.gov (2000)

    U.S. Census Bureau: American Community Survey Form C17002 (2006-2017) http://api.census.gov

    METHODOLOGY NOTES (across all datasets for this indicator) The U.S. Census Bureau defines a national poverty level (or household income) that varies by household size, number of children in a household, and age of householder. The national poverty level does not vary geographically even though cost of living is different across the United States. For the Bay Area, where cost of living is high and incomes are correspondingly high, an appropriate poverty level is 200% of poverty or twice the national poverty level, consistent with what was used for past equity work at MTC and ABAG. For comparison, however, both the national and 200% poverty levels are presented.

    For Vital Signs, the poverty rate is defined as the number of people (including children) living below twice the poverty level divided by the number of people for whom poverty status is determined. Poverty rates do not include unrelated individuals below 15 years old or people who live in the following: institutionalized group quarters, college dormitories, military barracks, and situations without conventional housing. The household income definitions for poverty change each year to reflect inflation. The official poverty definition uses money income before taxes and does not include capital gains or noncash benefits (such as public housing, Medicaid, and food stamps). For the national poverty level definitions by year, see: https://www.census.gov/hhes/www/poverty/data/threshld/index.html For an explanation on how the Census Bureau measures poverty, see: https://www.census.gov/hhes/www/poverty/about/overview/measure.html

    For the American Community Survey datasets, 1-year data was used for region, county, and metro areas whereas 5-year rolling average data was used for city and census tract.

    To be consistent across metropolitan areas, the poverty definition for non-Bay Area metros is twice the national poverty level. Data were not adjusted for varying income and cost of living levels across the metropolitan areas.

  12. g

    USDA Food and Nutrition Service Program, Food Stamp Program : Average...

    • geocommons.com
    Updated Jun 4, 2008
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    United States Department of Agriculture (USDA) - Food and Nutrition Service Program (2008). USDA Food and Nutrition Service Program, Food Stamp Program : Average Monthly Benefit per Household, USA, 2003-2007 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    Jun 4, 2008
    Dataset provided by
    United States Department of Agriculture (USDA) - Food and Nutrition Service Program
    matia
    Description

    This dataset explores the United States Department of Agriculture (USDA) Food and Nutrition Service Program - Food Stamp Program by recording the average monthly benefit by household for the years 2003-2007 by state. * The following outlying areas receive Nutrition Assistance Grants which provide benefits analogous to the Food Stamp Program: Puerto Rico, American Samoa, and the Northern Marianas. Annual averages are total benefits divided by total annual household participation. All data are subject to revision.

  13. T

    Vital Signs: Population – by region shares (2022)

    • data.bayareametro.gov
    csv, xlsx, xml
    Updated Jul 8, 2022
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2022). Vital Signs: Population – by region shares (2022) [Dataset]. https://data.bayareametro.gov/dataset/Vital-Signs-Population-by-region-shares-2022-/ahht-8dbe
    Explore at:
    xml, xlsx, csvAvailable download formats
    Dataset updated
    Jul 8, 2022
    Description

    VITAL SIGNS INDICATOR Population (LU1)

    FULL MEASURE NAME
    Population estimates

    LAST UPDATED
    February 2023

    DESCRIPTION
    Population is a measurement of the number of residents that live in a given geographical area, be it a neighborhood, city, county or region.

    DATA SOURCE
    California Department of Finance: Population and Housing Estimates - http://www.dof.ca.gov/Forecasting/Demographics/Estimates/
    Table E-6: County Population Estimates (1960-1970)
    Table E-4: Population Estimates for Counties and State (1970-2021)
    Table E-8: Historical Population and Housing Estimates (1990-2010)
    Table E-5: Population and Housing Estimates (2010-2021)

    Bay Area Jurisdiction Centroids (2020) - https://data.bayareametro.gov/Boundaries/Bay-Area-Jurisdiction-Centroids-2020-/56ar-t6bs
    Computed using 2020 US Census TIGER boundaries

    U.S. Census Bureau: Decennial Census Population Estimates - http://www.s4.brown.edu/us2010/index.htm- via Longitudinal Tract Database Spatial Structures in the Social Sciences, Brown University
    1970-2020

    U.S. Census Bureau: American Community Survey (5-year rolling average; tract) - https://data.census.gov/
    2011-2021
    Form B01003

    Priority Development Areas (Plan Bay Area 2050) - https://opendata.mtc.ca.gov/datasets/MTC::priority-development-areas-plan-bay-area-2050/about

    CONTACT INFORMATION
    vitalsigns.info@bayareametro.gov

    METHODOLOGY NOTES (across all datasets for this indicator)
    All historical data reported for Census geographies (metropolitan areas, county, city and tract) use current legal boundaries and names. A Priority Development Area (PDA) is a locally-designated area with frequent transit service, where a jurisdiction has decided to concentrate most of its housing and jobs growth for development in the foreseeable future. PDA boundaries are current as of December 2022.

    Population estimates for Bay Area counties and cities are from the California Department of Finance, which are as of January 1st of each year. Population estimates for non-Bay Area regions are from the U.S. Census Bureau. Decennial Census years reflect population as of April 1st of each year whereas population estimates for intercensal estimates are as of July 1st of each year. Population estimates for Bay Area tracts are from the decennial Census (1970-2020) and the American Community Survey (2011-2021 5-year rolling average). Estimates of population density for tracts use gross acres as the denominator.

    Population estimates for Bay Area tracts and PDAs are from the decennial Census (1970-2020) and the American Community Survey (2011-2021 5-year rolling average). Population estimates for PDAs are allocated from tract-level Census population counts using an area ratio. For example, if a quarter of a Census tract lies with in a PDA, a quarter of its population will be allocated to that PDA. Estimates of population density for PDAs use gross acres as the denominator. Note that the population densities between PDAs reported in previous iterations of Vital Signs are mostly not comparable due to minor differences and an updated set of PDAs (previous iterations reported Plan Bay Area 2040 PDAs, whereas current iterations report Plan Bay Area 2050 PDAs).

    The following is a list of cities and towns by geographical area:

    Big Three: San Jose, San Francisco, Oakland

    Bayside: Alameda, Albany, Atherton, Belmont, Belvedere, Berkeley, Brisbane, Burlingame, Campbell, Colma, Corte Madera, Cupertino, Daly City, East Palo Alto, El Cerrito, Emeryville, Fairfax, Foster City, Fremont, Hayward, Hercules, Hillsborough, Larkspur, Los Altos, Los Altos Hills, Los Gatos, Menlo Park, Mill Valley, Millbrae, Milpitas, Monte Sereno, Mountain View, Newark, Pacifica, Palo Alto, Piedmont, Pinole, Portola Valley, Redwood City, Richmond, Ross, San Anselmo, San Bruno, San Carlos, San Leandro, San Mateo, San Pablo, San Rafael, Santa Clara, Saratoga, Sausalito, South San Francisco, Sunnyvale, Tiburon, Union City, Vallejo, Woodside

    Inland, Delta and Coastal: American Canyon, Antioch, Benicia, Brentwood, Calistoga, Clayton, Cloverdale, Concord, Cotati, Danville, Dixon, Dublin, Fairfield, Gilroy, Half Moon Bay, Healdsburg, Lafayette, Livermore, Martinez, Moraga, Morgan Hill, Napa, Novato, Oakley, Orinda, Petaluma, Pittsburg, Pleasant Hill, Pleasanton, Rio Vista, Rohnert Park, San Ramon, Santa Rosa, Sebastopol, Sonoma, St. Helena, Suisun City, Vacaville, Walnut Creek, Windsor, Yountville

    Unincorporated: all unincorporated towns

  14. g

    USDA Food and Nutrition Service, Summer Food Service: Participation, USA,...

    • geocommons.com
    Updated May 30, 2008
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    matia (2008). USDA Food and Nutrition Service, Summer Food Service: Participation, USA, 2003-2007 [Dataset]. http://geocommons.com/search.html
    Explore at:
    Dataset updated
    May 30, 2008
    Dataset provided by
    matia
    United States Department of Agriculture (USDA) Food and Nutrition Service Program Data
    Description

    This dataset explores the USDA summer food service program participation by state for fiscal years 2003-2007. *Average daily attendance is reported for July only, the peak month of national program activity. Unlike participation data in the National School Lunch and School Breakfast Programs, average daily attendance is not adjusted for absenteeism. Data are subject to revision.

  15. N

    Las Vegas, NV Median Income by Age Groups Dataset: A Comprehensive Breakdown...

    • neilsberg.com
    csv, json
    Updated Feb 25, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Neilsberg Research (2025). Las Vegas, NV Median Income by Age Groups Dataset: A Comprehensive Breakdown of Las Vegas Annual Median Income Across 4 Key Age Groups // 2025 Edition [Dataset]. https://www.neilsberg.com/insights/las-vegas-nv-median-household-income-by-age/
    Explore at:
    json, csvAvailable download formats
    Dataset updated
    Feb 25, 2025
    Dataset authored and provided by
    Neilsberg Research
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    Las Vegas, Nevada
    Variables measured
    Income for householder under 25 years, Income for householder 65 years and over, Income for householder between 25 and 44 years, Income for householder between 45 and 64 years
    Measurement technique
    The data presented in this dataset is derived from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. It delineates income distributions across four age groups (Under 25 years, 25 to 44 years, 45 to 64 years, and 65 years and over) following an initial analysis and categorization. Subsequently, we adjusted these figures for inflation using the Consumer Price Index retroactive series via current methods (R-CPI-U-RS). For additional information about these estimations, please contact us via email at research@neilsberg.com
    Dataset funded by
    Neilsberg Research
    Description
    About this dataset

    Context

    The dataset presents the distribution of median household income among distinct age brackets of householders in Las Vegas. Based on the latest 2019-2023 5-Year Estimates from the American Community Survey, it displays how income varies among householders of different ages in Las Vegas. It showcases how household incomes typically rise as the head of the household gets older. The dataset can be utilized to gain insights into age-based household income trends and explore the variations in incomes across households.

    Key observations: Insights from 2023

    In terms of income distribution across age cohorts, in Las Vegas, householders within the 45 to 64 years age group have the highest median household income at $83,595, followed by those in the 25 to 44 years age group with an income of $72,454. Meanwhile householders within the 65 years and over age group report the second lowest median household income of $55,567. Notably, householders within the under 25 years age group, had the lowest median household income at $50,301.

    Content

    When available, the data consists of estimates from the U.S. Census Bureau American Community Survey (ACS) 2019-2023 5-Year Estimates. All incomes have been adjusting for inflation and are presented in 2023-inflation-adjusted dollars.

    Age groups classifications include:

    • Under 25 years
    • 25 to 44 years
    • 45 to 64 years
    • 65 years and over

    Variables / Data Columns

    • Age Of The Head Of Household: This column presents the age of the head of household
    • Median Household Income: Median household income, in 2023 inflation-adjusted dollars for the specific age group

    Good to know

    Margin of Error

    Data in the dataset are based on the estimates and are subject to sampling variability and thus a margin of error. Neilsberg Research recommends using caution when presening these estimates in your research.

    Custom data

    If you do need custom data for any of your research project, report or presentation, you can contact our research staff at research@neilsberg.com for a feasibility of a custom tabulation on a fee-for-service basis.

    Inspiration

    Neilsberg Research Team curates, analyze and publishes demographics and economic data from a variety of public and proprietary sources, each of which often includes multiple surveys and programs. The large majority of Neilsberg Research aggregated datasets and insights is made available for free download at https://www.neilsberg.com/research/.

    Recommended for further research

    This dataset is a part of the main dataset for Las Vegas median household income by age. You can refer the same here

  16. Family food datasets

    • gov.uk
    Updated Oct 17, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Department for Environment, Food & Rural Affairs (2024). Family food datasets [Dataset]. https://www.gov.uk/government/statistical-data-sets/family-food-datasets
    Explore at:
    Dataset updated
    Oct 17, 2024
    Dataset provided by
    GOV.UKhttp://gov.uk/
    Authors
    Department for Environment, Food & Rural Affairs
    Description

    These family food datasets contain more detailed information than the ‘Family Food’ report and mainly provide statistics from 2001 onwards. The UK household purchases and the UK household expenditure spreadsheets include statistics from 1974 onwards. These spreadsheets are updated annually when a new edition of the ‘Family Food’ report is published.

    The ‘purchases’ spreadsheets give the average quantity of food and drink purchased per person per week for each food and drink category. The ‘nutrient intake’ spreadsheets give the average nutrient intake (eg energy, carbohydrates, protein, fat, fibre, minerals and vitamins) from food and drink per person per day. The ‘expenditure’ spreadsheets give the average amount spent in pence per person per week on each type of food and drink. Several different breakdowns are provided in addition to the UK averages including figures by region, income, household composition and characteristics of the household reference person.

    UK (updated with new FYE 2023 data)

    countries and regions (CR) (updated with FYE 2022 data)

    equivalised income decile group (EID) (updated with FYE 2022 data)

  17. d

    Infant Mortality, Deaths Per 1,000 Live Births (LGHC Indicator)

    • catalog.data.gov
    • data.ca.gov
    • +3more
    Updated Jul 23, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    California Department of Public Health (2025). Infant Mortality, Deaths Per 1,000 Live Births (LGHC Indicator) [Dataset]. https://catalog.data.gov/dataset/infant-mortality-deaths-per-1000-live-births-lghc-indicator-7c03d
    Explore at:
    Dataset updated
    Jul 23, 2025
    Dataset provided by
    California Department of Public Health
    Description

    This is a source dataset for a Let's Get Healthy California indicator at https://letsgethealthy.ca.gov/. Infant Mortality is defined as the number of deaths in infants under one year of age per 1,000 live births. Infant mortality is often used as an indicator to measure the health and well-being of a community, because factors affecting the health of entire populations can also impact the mortality rate of infants. Although California’s infant mortality rate is better than the national average, there are significant disparities, with African American babies dying at more than twice the rate of other groups. Data are from the Birth Cohort Files. The infant mortality indicator computed from the birth cohort file comprises birth certificate information on all births that occur in a calendar year (denominator) plus death certificate information linked to the birth certificate for those infants who were born in that year but subsequently died within 12 months of birth (numerator). Studies of infant mortality that are based on information from death certificates alone have been found to underestimate infant death rates for infants of all race/ethnic groups and especially for certain race/ethnic groups, due to problems such as confusion about event registration requirements, incomplete data, and transfers of newborns from one facility to another for medical care. Note there is a separate data table "Infant Mortality by Race/Ethnicity" which is based on death records only, which is more timely but less accurate than the Birth Cohort File. Single year shown to provide state-level data and county totals for the most recent year. Numerator: Infants deaths (under age 1 year). Denominator: Live births occurring to California state residents. Multiple years aggregated to allow for stratification at the county level. For this indicator, race/ethnicity is based on the birth certificate information, which records the race/ethnicity of the mother. The mother can “decline to state”; this is considered to be a valid response. These responses are not displayed on the indicator visualization.

  18. d

    Voter Registration by Census Tract

    • catalog.data.gov
    • data.kingcounty.gov
    • +1more
    Updated Jun 29, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data.kingcounty.gov (2025). Voter Registration by Census Tract [Dataset]. https://catalog.data.gov/dataset/voter-registration-by-census-tract
    Explore at:
    Dataset updated
    Jun 29, 2025
    Dataset provided by
    data.kingcounty.gov
    Description

    This web map displays data from the voter registration database as the percent of registered voters by census tract in King County, Washington. The data for this web map is compiled from King County Elections voter registration data for the years 2013-2019. The total number of registered voters is based on the geo-location of the voter's registered address at the time of the general election for each year. The eligible voting population, age 18 and over, is based on the estimated population increase from the US Census Bureau and the Washington Office of Financial Management and was calculated as a projected 6 percent population increase for the years 2010-2013, 7 percent population increase for the years 2010-2014, 9 percent population increase for the years 2010-2015, 11 percent population increase for the years 2010-2016 & 2017, 14 percent population increase for the years 2010-2018 and 17 percent population increase for the years 2010-2019. The total population 18 and over in 2010 was 1,517,747 in King County, Washington. The percentage of registered voters represents the number of people who are registered to vote as compared to the eligible voting population, age 18 and over. The voter registration data by census tract was grouped into six percentage range estimates: 50% or below, 51-60%, 61-70%, 71-80%, 81-90% and 91% or above with an overall 84 percent registration rate. In the map the lighter colors represent a relatively low percentage range of voter registration and the darker colors represent a relatively high percentage range of voter registration. PDF maps of these data can be viewed at King County Elections downloadable voter registration maps. The 2019 General Election Voter Turnout layer is voter turnout data by historical precinct boundaries for the corresponding year. The data is grouped into six percentage ranges: 0-30%, 31-40%, 41-50% 51-60%, 61-70%, and 71-100%. The lighter colors represent lower turnout and the darker colors represent higher turnout. The King County Demographics Layer is census data for language, income, poverty, race and ethnicity at the census tract level and is based on the 2010-2014 American Community Survey 5 year Average provided by the United States Census Bureau. Since the data is based on a survey, they are considered to be estimates and should be used with that understanding. The demographic data sets were developed and are maintained by King County Staff to support the King County Equity and Social Justice program. Other data for this map is located in the King County GIS Spatial Data Catalog, where data is managed by the King County GIS Center, a multi-department enterprise GIS in King County, Washington. King County has nearly 1.3 million registered voters and is the largest jurisdiction in the United States to conduct all elections by mail. In the map you can view the percent of registered voters by census tract, compare registration within political districts, compare registration and demographic data, verify your voter registration or register to vote through a link to the VoteWA, Washington State Online Voter Registration web page.

  19. Vital Signs: Poverty - by tract

    • data.bayareametro.gov
    • splitgraph.com
    csv, xlsx, xml
    Updated Dec 12, 2018
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Census Bureau (2018). Vital Signs: Poverty - by tract [Dataset]. https://data.bayareametro.gov/dataset/Vital-Signs-Poverty-by-tract/974p-p6wz
    Explore at:
    csv, xlsx, xmlAvailable download formats
    Dataset updated
    Dec 12, 2018
    Dataset provided by
    United States Census Bureauhttp://census.gov/
    Authors
    U.S. Census Bureau
    Description

    VITAL SIGNS INDICATOR Poverty (EQ5)

    FULL MEASURE NAME The share of the population living in households that earn less than 200 percent of the federal poverty limit

    LAST UPDATED December 2018

    DESCRIPTION Poverty refers to the share of the population living in households that earn less than 200 percent of the federal poverty limit, which varies based on the number of individuals in a given household. It reflects the number of individuals who are economically struggling due to low household income levels.

    DATA SOURCE U.S Census Bureau: Decennial Census http://www.nhgis.org (1980-1990) http://factfinder2.census.gov (2000)

    U.S. Census Bureau: American Community Survey Form C17002 (2006-2017) http://api.census.gov

    METHODOLOGY NOTES (across all datasets for this indicator) The U.S. Census Bureau defines a national poverty level (or household income) that varies by household size, number of children in a household, and age of householder. The national poverty level does not vary geographically even though cost of living is different across the United States. For the Bay Area, where cost of living is high and incomes are correspondingly high, an appropriate poverty level is 200% of poverty or twice the national poverty level, consistent with what was used for past equity work at MTC and ABAG. For comparison, however, both the national and 200% poverty levels are presented.

    For Vital Signs, the poverty rate is defined as the number of people (including children) living below twice the poverty level divided by the number of people for whom poverty status is determined. Poverty rates do not include unrelated individuals below 15 years old or people who live in the following: institutionalized group quarters, college dormitories, military barracks, and situations without conventional housing. The household income definitions for poverty change each year to reflect inflation. The official poverty definition uses money income before taxes and does not include capital gains or noncash benefits (such as public housing, Medicaid, and food stamps). For the national poverty level definitions by year, see: https://www.census.gov/hhes/www/poverty/data/threshld/index.html For an explanation on how the Census Bureau measures poverty, see: https://www.census.gov/hhes/www/poverty/about/overview/measure.html

    For the American Community Survey datasets, 1-year data was used for region, county, and metro areas whereas 5-year rolling average data was used for city and census tract.

    To be consistent across metropolitan areas, the poverty definition for non-Bay Area metros is twice the national poverty level. Data were not adjusted for varying income and cost of living levels across the metropolitan areas.

  20. Health Inequality Project

    • redivis.com
    • stanford.redivis.com
    application/jsonl +7
    Updated Jan 17, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Stanford Center for Population Health Sciences (2020). Health Inequality Project [Dataset]. http://doi.org/10.57761/7wg0-e126
    Explore at:
    parquet, arrow, avro, spss, csv, stata, sas, application/jsonlAvailable download formats
    Dataset updated
    Jan 17, 2020
    Dataset provided by
    Redivis Inc.
    Authors
    Stanford Center for Population Health Sciences
    Time period covered
    Jan 1, 2001 - Dec 31, 2014
    Description

    Abstract

    The Health Inequality Project uses big data to measure differences in life expectancy by income across areas and identify strategies to improve health outcomes for low-income Americans.

    Section 7

    This table reports life expectancy point estimates and standard errors for men and women at age 40 for each percentile of the national income distribution. Both race-adjusted and unadjusted estimates are reported.

    Source

    Section 13

    This table reports life expectancy point estimates and standard errors for men and women at age 40 for each percentile of the national income distribution separately by year. Both race-adjusted and unadjusted estimates are reported.

    Source

    Section 6

    This dataset was created on 2020-01-10 18:53:00.508 by merging multiple datasets together. The source datasets for this version were:

    Commuting Zone Life Expectancy Estimates by year: CZ-level by-year life expectancy estimates for men and women, by income quartile

    Commuting Zone Life Expectancy: Commuting zone (CZ)-level life expectancy estimates for men and women, by income quartile

    Commuting Zone Life Expectancy Trends: CZ-level estimates of trends in life expectancy for men and women, by income quartile

    Commuting Zone Characteristics: CZ-level characteristics

    Commuting Zone Life Expectancy for larger populations: CZ-level life expectancy estimates for men and women, by income ventile

    Section 15

    This table reports life expectancy point estimates and standard errors for men and women at age 40 for each quartile of the national income distribution by state of residence and year. Both race-adjusted and unadjusted estimates are reported.

    Source

    Section 11

    This table reports US mortality rates by gender, age, year and household income percentile. Household incomes are measured two years prior to the mortality rate for mortality rates at ages 40-63, and at age 61 for mortality rates at ages 64-76. The “lag” variable indicates the number of years between measurement of income and mortality.

    Observations with 1 or 2 deaths have been masked: all mortality rates that reflect only 1 or 2 deaths have been recoded to reflect 3 deaths

    Source

    Section 3

    This table reports coefficients and standard errors from regressions of life expectancy estimates for men and women at age 40 for each quartile of the national income distribution on calendar year by commuting zone of residence. Only the slope coefficient, representing the average increase or decrease in life expectancy per year, is reported. Trend estimates for both race-adjusted and unadjusted life expectancies are reported. Estimates are reported for the 100 largest CZs (populations greater than 590,000) only.

    Source

    Section 9

    This table reports life expectancy estimates at age 40 for Males and Females for all countries. Source: World Health Organization, accessed at: http://apps.who.int/gho/athena/

    Source

    Section 10

    This table reports life expectancy point estimates and standard errors for men and women at age 40 for each quartile of the national income distribution by county of residence. Both race-adjusted and unadjusted estimates are reported. Estimates are reported for counties with populations larger than 25,000 only

    Source

    Section 2

    This table reports life expectancy point estimates and standard errors for men and women at age 40 for each quartile of the national income distribution by commuting zone of residence and year. Both race-adjusted and unadjusted estimates are reported. Estimates are reported for the 100 largest CZs (populations greater than 590,000) only.

    Source

    Section 8

    This table reports US population and death counts by age, year, and sex from various sources. Counts labelled “dm1” are derived from the Social Security Administration Data Master 1 file. Counts labelled “irs” are derived from tax data. Counts labelled “cdc” are derived from NCHS life tables.

    Source

    Section 12

    This table reports numerous county characteristics, compiled from various sources. These characteristics are described in the county life expectancy table.

    Two variables constructed by the Cen

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Statista (2025). Cost of living index in the U.S. 2024, by state [Dataset]. https://www.statista.com/statistics/1240947/cost-of-living-index-usa-by-state/
Organization logo

Cost of living index in the U.S. 2024, by state

Explore at:
2 scholarly articles cite this dataset (View in Google Scholar)
Dataset updated
May 27, 2025
Dataset authored and provided by
Statistahttp://statista.com/
Time period covered
2024
Area covered
United States
Description

West Virginia and Kansas had the lowest cost of living across all U.S. states, with composite costs being half of those found in Hawaii. This was according to a composite index that compares prices for various goods and services on a state-by-state basis. In West Virginia, the cost of living index amounted to **** — well below the national benchmark of 100. Virginia— which had an index value of ***** — was only slightly above that benchmark. Expensive places to live included Hawaii, Massachusetts, and California. Housing costs in the U.S. Housing is usually the highest expense in a household’s budget. In 2023, the average house sold for approximately ******* U.S. dollars, but house prices in the Northeast and West regions were significantly higher. Conversely, the South had some of the least expensive housing. In West Virginia, Mississippi, and Louisiana, the median price of the typical single-family home was less than ******* U.S. dollars. That makes living expenses in these states significantly lower than in states such as Hawaii and California, where housing is much pricier. What other expenses affect the cost of living? Utility costs such as electricity, natural gas, water, and internet also influence the cost of living. In Alaska, Hawaii, and Connecticut, the average monthly utility cost exceeded *** U.S. dollars. That was because of the significantly higher prices for electricity and natural gas in these states.

Search
Clear search
Close search
Google apps
Main menu