R/disasters_bycountry.R

#' disasters_bycountry function
#'
#' This function allows you to find disasters by Country
#'
#' @param exactcountry Defaults to "Bangladesh"
#' @export
#' @examples
#' disasters_bycountry()

disasters_bycountry <- function(exactcountry="Afghanistan") {
    Remdat[Remdat$Country==exactcountry,]
}
botanyhelp/Remdata documentation built on May 6, 2019, 7:27 a.m.