sudano {ndi}R Documentation

Location Quotient (LQ) based on Merton (1938) and Sudano et al. (2013)

Description

Compute the aspatial Location Quotient (Sudano) of a selected racial/ethnic subgroup(s) and U.S. geographies.

Usage

sudano(
  geo_large = "county",
  geo_small = "tract",
  year = 2020,
  subgroup,
  omit_NAs = TRUE,
  quiet = FALSE,
  ...
)

Arguments

geo_large

Character string specifying the larger geographical unit of the data. The default is counties geo_large = "county".

geo_small

Character string specifying the smaller geographical unit of the data. The default is census tracts geo_large = "tract".

year

Numeric. The year to compute the estimate. The default is 2020, and the years 2009 onward are currently available.

subgroup

Character string specifying the racial/ethnic subgroup(s). See Details for available choices.

omit_NAs

Logical. If FALSE, will compute index for a larger geographical unit only if all of its smaller geographical units have values. The default is TRUE.

quiet

Logical. If TRUE, will display messages about potential missing census information. The default is FALSE.

...

Arguments passed to get_acs to select state, county, and other arguments for census characteristics

Details

This function will compute the aspatial Location Quotient (LQ) of selected racial/ethnic subgroups and U.S. geographies for a specified geographical extent (e.g., the entire U.S. or a single state) based on Merton (1939) doi:10.2307/2084686 and Sudano et al. (2013) doi:10.1016/j.healthplace.2012.09.015. This function provides the computation of LQ for any of the U.S. Census Bureau race/ethnicity subgroups (including Hispanic and non-Hispanic individuals).

The function uses the get_acs function to obtain U.S. Census Bureau 5-year American Community Survey characteristics used for the aspatial computation. The yearly estimates are available for 2009 onward when ACS-5 data are available but are available from other U.S. Census Bureau surveys. The twenty racial/ethnic subgroups (U.S. Census Bureau definitions) are:

Use the internal state and county arguments within the get_acs function to specify geographic extent of the data output.

LQ is some measure of relative racial homogeneity of each smaller geography within a larger geography. LQ can range in value from 0 to infinity because it is ratio of two proportions in which the numerator is the proportion of subgroup population in a smaller geography and the denominator is the proportion of subgroup population in its larger geography. For example, a smaller geography with an LQ of 5 means that the proportion of the subgroup population living in the smaller geography is five times the proportion of the subgroup population in its larger geography.

Larger geographies available include state geo_large = "state", county geo_large = "county", and census tract geo_large = "tract" levels. Smaller geographies available include, county geo_small = "county", census tract geo_small = "tract", and census block group geo_small = "block group" levels. If a larger geographical area is comprised of only one smaller geographical area (e.g., a U.S county contains only one census tract), then the LQ value returned is NA.

Value

An object of class 'list'. This is a named list with the following components:

lq

An object of class 'tbl' for the GEOID, name, and LQ at specified smaller census geographies.

lq_data

An object of class 'tbl' for the raw census values at specified smaller census geographies.

missing

An object of class 'tbl' of the count and proportion of missingness for each census variable used to compute LQ.

See Also

get_acs for additional arguments for geographic extent selection (i.e., state and county).

Examples

## Not run: 
# Wrapped in \dontrun{} because these examples require a Census API key.
  
  # Isolation of non-Hispanic Black populations
  ## of census tracts within Georgia, U.S.A., counties (2020)
  sudano(geo_large = "state", geo_small = "county", state = "GA",
         year = 2020, subgroup = "NHoLB")
  

## End(Not run)


[Package ndi version 0.1.5 Index]