#' @import tibble
#' @import R.cache
#' @name hud_fmr_state_metroareas
#' @title Fair Markets Rent State Queries for Metroareas
#' @description This function queries for state(s) and returns the
#' (Fair Markets Rent) FMR calculation
#' at a metroarea resolution for all metroareas in the state query.
#' @param state A character or numeric vector: the state(s) to query for.
#' Can be abbreviation(s),
#' fip code(s), or full name(s).
#' @param year A character of numeric vector: gets the year
#' that this data was recorded.
#' Can specify multiple year(s). Default is the
#' previous year.
#' @param key A character vector of length one with the key obtained from HUD
#' (US Department of Housing and Urban Development)
#' USER website.
#' @param to_tibble A logical: if TRUE, return the data in a tibble format
#' rather than a data frame.
#' @keywords Fair Markets Rent API
#' @seealso
#' * [rhud::hud_fmr_state_metroareas()]
#' * [rhud::hud_fmr_state_counties()]
#' * [rhud::hud_fmr_metroarea_zip()]
#' * [rhud::hud_fmr_county_zip()]
#' * [rhud::hud_fmr()]
#' @export
#' @returns A data frame with Fair Markets Rent for metro areas in state(s) for
#' all combinations of "state" and "year" inputs.
#' @examples
#' \dontrun{
#'
#' hud_fmr_state_metroareas("VA", year = c(2021))
#'
#' hud_fmr_state_metroareas("Alabama", year = c(2021))
#'
#' hud_fmr_state_metroareas("24", year = c(2021))
#'
#' }
hud_fmr_state_metroareas <- function(state,
year = format(Sys.Date() - 365, "%Y"),
key = Sys.getenv("HUD_KEY"),
to_tibble = getOption("rhud_use_tibble",
FALSE)) {
is_internet_available()
args <- fmr_il_input_check_cleansing(state, year, key)
query <- args$query
year <- args$year
key <- args$key
query_type <- args$query_type
# Create all combinations of query and year...
all_queries <- expand.grid(query = query, year = year,
stringsAsFactors = FALSE)
res <- fmr_do_query_call(all_queries, key, to_tibble, query_type)$metroareas
res
}
#' @name hud_fmr_state_counties
#' @title Fair Markets Rent State Queries for Counties
#' @description This function queries for state(s) and returns the
#' (Fair Markets Rent) FMR calculation
#' at a county resolution for all counties in state input.
#' @param state A character or numeric vector: the state(s) to query for.
#' Can be abbreviation(s),
#' fip code(s), or full name(s).
#' @param year A character of numeric vector: gets the year
#' that this data was recorded.
#' Can specify multiple year(s). Default is the
#' previous year.
#' @param key A character vector of length one with the key obtained from HUD
#' (US Department of Housing and Urban Development)
#' USER website.
#' @param to_tibble A logical: if TRUE, return the data in a tibble format
#' rather than a data frame.
#' @keywords Fair Markets Rent API
#' @seealso
#' * [rhud::hud_fmr_state_metroareas()]
#' * [rhud::hud_fmr_state_counties()]
#' * [rhud::hud_fmr_metroarea_zip()]
#' * [rhud::hud_fmr_county_zip()]
#' * [rhud::hud_fmr()]
#' @export
#' @returns A data frame with fair markets rent for counties in states for
#' all combinations of "state" and "year" inputs.
#' @examples
#' \dontrun{
#' hud_fmr_state_counties("VA", year = c(2021))
#'
#' hud_fmr_state_counties("Alabama", year = c(2021))
#'
#' hud_fmr_state_counties("24", year = c(2021))
#' }
hud_fmr_state_counties <- function(state, year = format(Sys.Date() - 365, "%Y"),
key = Sys.getenv("HUD_KEY"),
to_tibble = getOption("rhud_use_tibble",
FALSE)) {
is_internet_available()
args <- fmr_il_input_check_cleansing(state, year, key)
query <- args$query
year <- args$year
key <- args$key
query_type <- args$query_type
# Create all combinations of query and year...
all_queries <- expand.grid(query = query, year = year,
stringsAsFactors = FALSE)
res <- fmr_do_query_call(all_queries, key, to_tibble, query_type)$counties
res
}
#' @name hud_fmr_county_zip
#' @title Fair Markets Rent County Queries for Zip
#' @description This function queries for county(s) and returns FMR calculation.
#' If the county is not
#' a small area, it will return only single
#' measurement for that county. If the county is considered a small area,
#' it will return data at a zip code level.
#' @param county A character or numeric vector: a county to query for.
#' Must be provided as a 5 digit fipcode.
#' @param year A character of numeric vector: gets the year
#' that this data was recorded.
#' Can specify multiple year(s). Default is the
#' previous year.
#' @param key A character vector of length one with the key obtained from HUD
#' (US Department of Housing and Urban Development)
#' USER website.
#' @param to_tibble A logical: if TRUE, return the data in a tibble format
#' rather than a data frame.
#' @keywords Fair Markets Rent API
#' @seealso
#' * [rhud::hud_fmr_state_metroareas()]
#' * [rhud::hud_fmr_state_counties()]
#' * [rhud::hud_fmr_metroarea_zip()]
#' * [rhud::hud_fmr_county_zip()]
#' * [rhud::hud_fmr()]
#' @export
#' @returns A data frame with fair markets rent for zip codes in counties for
#' all combinations of "county" and "year" inputs.
#' @examples
#' \dontrun{
#' hud_fmr_county_zip("5100199999", year = c(2021))
#'
#' hud_fmr_county_zip("5100199999", year = c("2021"))
#'
#' hud_fmr_county_zip(5151099999, year = c(2021))
#' }
hud_fmr_county_zip <- function(county, year = format(Sys.Date() - 365, "%Y"),
key = Sys.getenv("HUD_KEY"),
to_tibble = getOption("rhud_use_tibble",
FALSE)) {
is_internet_available()
args <- fmr_il_input_check_cleansing(county, year, key)
query <- args$query
year <- args$year
key <- args$key
query_type <- args$query_type
all_queries <- expand.grid(query = query, year = year,
stringsAsFactors = FALSE)
res <- fmr_do_query_call(all_queries, key, to_tibble, query_type)
res
}
#' @name hud_fmr_metroarea_zip
#' @title Fair Markets Rent Metroarea Queries for Zip
#' @description This function queries for metroarea(s) and returns
#' FMR calculation. If the metroarea is not
#' a small area, it will return only single
#' measurement for that metroarea. If the metrarea is considered a
#' small area, it will return data at a zip code level.
#' @param metroarea A character vector: metroarea(s) to query for.
#' @param year A character of numeric vector: gets the year
#' that this data was recorded.
#' Can specify multiple year(s). Default is the
#' previous year.
#' @param key A character vector of length one with the key obtained from HUD
#' (US Department of Housing and Urban Development)
#' USER website.
#' @param to_tibble A logical: if TRUE, return the data in a tibble format
#' rather than a data frame.
#' @keywords Fair Markets Rent API
#' @seealso
#' * [rhud::hud_fmr_state_metroareas()]
#' * [rhud::hud_fmr_state_counties()]
#' * [rhud::hud_fmr_metroarea_zip()]
#' * [rhud::hud_fmr_county_zip()]
#' * [rhud::hud_fmr()]
#' @export
#' @returns A data frame with fair markets rent for zip codes in metro areas for
#' all combinations of "metroarea" and "year" inputs.
#' @examples
#' \dontrun{
#' hud_fmr_metroarea_zip("METRO47900M47900", year = c(2018))
#'
#' hud_fmr_metroarea_zip("METRO29180N22001", year = c(2019))
#'
#' hud_fmr_metroarea_zip("METRO10380M10380", year = c(2020))
#' }
hud_fmr_metroarea_zip <- function(metroarea,
year = format(Sys.Date() - 365, "%Y"),
key = Sys.getenv("HUD_KEY"),
to_tibble = getOption("rhud_use_tibble",
FALSE)) {
is_internet_available()
args <- fmr_il_input_check_cleansing(metroarea, year, key)
query <- args$query
year <- args$year
key <- args$key
query_type <- args$query_type
all_queries <- expand.grid(query = query, year = year,
stringsAsFactors = FALSE)
res <- fmr_do_query_call(all_queries, key, to_tibble, query_type)
res
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.