R/area.R

#' U.S. Farm and Land Area by State
#'
#' This dataset contains the land area and the farm land area (both in sq. miles) from each of the 50 U.S. states.
#'
#' @docType data
#'
#' @usage data(area)
#'
#' @format area is a dataframe with 50 rows and 3 variables.
#' \describe{
#'   \item{state}{abbreviations for the 50 U.S. states}
#'   \item{land}{land area for each state (sq. miles)}
#'   \item{farm}{farm area for each state (sq. miles)}
#' }
#' @source
#' The state land area data is from the web page https://simple.wikipedia.org/wiki/List_of_U.S._states_and_territories_by_area.
#' It contains the land area (sq. miles) of each of the 50 states. The farm area is from a dataset from STAT 304.
#' @export
#'
"area"
Addison-McGhee/existingToGitHub documentation built on Dec. 17, 2021, 7:39 a.m.