get_hud_il_data | R Documentation |
Provides income limit data at the County and MSA level from HUD.
get_hud_il_data(entityid, yr, hud_key = Sys.getenv("HUD_API_KEY"))
entityid |
Character string containing the 'fips_code' from get_hud_fmr_listcounties(...) or 'cbsa_code' from get_hud_fmr_listmetros(...). |
yr |
Character string indicating the year. |
hud_key |
Character string indicating your API key from HUD. Default is Sys.getenv("HUD_API_KEY"). |
Provides income limit data at the County and MSA level from HUD.
A list of data tables containing income limit data from HUD.
Paul Richardson
## Not run: library(hudr) hud_key <- Sys.getenv("HUD_API_KEY") cbsa_codes <- get_hud_fmr_listmetros(hud_key = hud_key) cnty_codes <- get_hud_fmr_listcounties(hud_key = hud_key) il_msa_dt <- get_hud_il_data(entityid = cbsa_codes$cbsa_code[1], yr = "2020", hud_key = hud_key) il_cnty_dt <- get_hud_il_data(entityid = cnty_codes$fips_code[1], yr = "2020", hud_key = hud_key) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.