-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from fhdsl/update-dataset-readme
Update information about datasets and data dictionaries
- Loading branch information
Showing
26 changed files
with
945 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,108 @@ | ||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) Data | ||
#' Age-adjusted heat-related ER visits between 2011 and 2022, as reported by the state of Colorado | ||
#' | ||
#' A dataset used in the DaSEH Short Course. More here.. | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 2340 rows and 7 columns. | ||
#' \describe{ | ||
#' \item{county}{CO county which reported the datapoint} | ||
#' \item{rate}{Age-adjusted rate of heat-related ER visits} | ||
#' \item{lower95cl}{Lower 95\% confidence limit for the age-adjusted rate} | ||
#' \item{upper95cl}{Upper 95\% confidence limit for the age-adjusted rate} | ||
#' \item{visits}{Total number of heat-related ER visits} | ||
#' \item{year}{Year between 2011 and 2022} | ||
#' \item{gender}{Gender, with the option of 'female', 'male', and 'both genders'} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(CO_heat_ER) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website. | ||
"CO_heat_ER" | ||
|
||
|
||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) by Age Data | ||
|
||
#' Statewide heat-related ER visits between 2011 and 2022 by age category, as reported by the state of Colorado. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. More here.. | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 216 rows and 7 columns. | ||
#' \describe{ | ||
#' \item{YEAR}{Year between 2011 and 2022} | ||
#' \item{GENDER}{Gender, with the option of 'female', 'male', and 'both genders'} | ||
#' \item{AGE}{Age category, with the options of '0-4 years old', '5-14 years old', '15-34 years old', '35-64 years old', '65+ years old', and 'All ages'} | ||
#' \item{RATE}{Rate of heat-related ER visits} | ||
#' \item{L95CL}{Lower 95\% confidence limit of the rate estimate} | ||
#' \item{U95CL}{Upper 95\% confidence limit of the rate estimate} | ||
#' \item{VISITS}{Number of heat-related ER visits} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(CO_heat_ER_byage) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website. | ||
"CO_heat_ER_byage" | ||
|
||
|
||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) by Gender Data | ||
|
||
#' Subset of county-level age-adjusted heat-related ER visits between 2011 and 2022 by age category broken down by gender, as reported by the state of Colorado. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. More here.. | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 240 rows and 7 columns. | ||
#' \describe{ | ||
#' \item{county}{CO county which reported the datapoint} | ||
#' \item{rate}{Age-adjusted rate of heat-related ER visits} | ||
#' \item{lower95cl}{Lower 95\% confidence limit for the age-adjusted rate} | ||
#' \item{upper95cl}{Upper 95\% confidence limit for the age-adjusted rate} | ||
#' \item{visits}{Total number of heat-related ER visits} | ||
#' \item{year}{Year between 2011 and 2022} | ||
#' \item{gender}{Gender, with the option of 'female', 'male', and 'both genders'} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(CO_heat_ER_bygender) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website. | ||
"CO_heat_ER_bygender" | ||
|
||
|
||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) Data. | ||
#' Long-formatted dataset of age-adjusted heat-related ER visits between 2011 and 2022 for Boulder and Denver counties, as reported by the state of Colorado. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. This data is in long, or "tidy", | ||
#' form. More here.. | ||
#' @format A data frame with 24 rows and 3 columns. | ||
#' \describe{ | ||
#' \item{county}{CO county, with the option of 'Boulder' or 'Denver'} | ||
#' \item{rate}{Age-adjusted rate of heat-related ER visits} | ||
#' \item{year}{Year between 2011 and 2022} | ||
#'} | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @examples | ||
#' data(CO_heat_ER_long) | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website. | ||
"CO_heat_ER_long" | ||
|
||
|
||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) Data. | ||
#' Wide-formatted dataset of age-adjusted heat-related ER visits between 2011 and 2022 for Boulder and Denver counties, as reported by the state of Colorado. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. This data is in wide form. More | ||
#' here.. | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 2 rows and 13 columns. | ||
#' \describe{ | ||
#' \item{county}{CO county, with the option of 'Boulder' or 'Denver'} | ||
#' \item{2011}{Age-adjusted rate for 2011} | ||
#' \item{2012}{Age-adjusted rate for 2012} | ||
#' \item{2013}{Age-adjusted rate for 2013} | ||
#' \item{2014}{Age-adjusted rate for 2014} | ||
#' \item{2015}{Age-adjusted rate for 2015} | ||
#' \item{2016}{Age-adjusted rate for 2016} | ||
#' \item{2017}{Age-adjusted rate for 2017} | ||
#' \item{2018}{Age-adjusted rate for 2018} | ||
#' \item{2019}{Age-adjusted rate for 2019} | ||
#' \item{2020}{Age-adjusted rate for 2020} | ||
#' \item{2021}{Age-adjusted rate for 2021} | ||
#' \item{2022}{Age-adjusted rate for 2022} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(CO_heat_ER_wide) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website. | ||
"CO_heat_ER_wide" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,37 @@ | ||
#' Colorado Statewide Heat-related Emergency Room Visits (Age Adjusted) Data. | ||
#' Statewide age-adjusted heat-related ER visits between 2011 and 2022, as reported by the state of Colorado. No breakdown by county, gender, or age category. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. Data is in "long" form. More here.. | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 12 rows and 5 columns. | ||
#' \describe{ | ||
#' \item{rate}{Age-adjusted rate of heat-related ER visits} | ||
#' \item{lower95cl}{Lower 95\% confidence limit for the age-adjusted rate} | ||
#' \item{upper95cl}{Upper 95\% confidence limit for the age-adjusted rate} | ||
#' \item{visits}{Total number of heat-related ER visits} | ||
#' \item{year}{Year between 2011 and 2022} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(er_CO_statewide) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website | ||
"er_CO_statewide" | ||
|
||
|
||
#' Colorado Heat-related Emergency Room Visits (Age Adjusted) Data | ||
#' County-level age-adjusted heat-related ER visits between 2011 and 2022, as reported by the state of Colorado. Contains a subset of Colorado counties. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. This data is gathered by the Colorado Environmental Public Health Tracking program. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. Data is in "long" form. More here.. | ||
#' @format A data frame with 205 rows and 6 columns. | ||
#' \describe{ | ||
#' \item{county}{Colorado county reporting the data} | ||
#' \item{rate}{Age-adjusted rate of heat-related ER visits} | ||
#' \item{lower95cl}{Lower 95\% confidence limit for the age-adjusted rate} | ||
#' \item{upper95cl}{Upper 95\% confidence limit for the age-adjusted rate} | ||
#' \item{visits}{Total number of heat-related ER visits} | ||
#' \item{year}{Year between 2011 and 2022} | ||
#'} | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @examples | ||
#' data(er_visits_by_CO_county) | ||
"er_visits_by_CO_county" | ||
#' @source Created using data downloaded from the Colorado Environmental Public Health Tracking program website | ||
"er_CO_county" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
#' HAA5 Exposure for Washington State Public Water Systems Data | ||
#' Haloacetic acid (HAA5) exposure for populations on public water systems in the state of Washington for 1999-2020. | ||
#' | ||
#' A dataset used in the DaSEH Short Course. More here.. | ||
#' A dataset used in the DaSEH Short Course. Data collected by the Washington Tracking Network. | ||
#' | ||
#' @source Created using data downloaded from x. | ||
#' @format A data frame with 33 rows and 11 columns. | ||
#' \describe{ | ||
#' \item{year}{Year} | ||
#' \item{pop_on_sampled_PWS}{Total population served by all sampled public water systems} | ||
#' \item{pop_0-15µg/L}{Population served by public water system with 0 - 15 ug/L HAA5} | ||
#' \item{pop_>15-30µg/L}{Population served by public water system with 15 - 30 ug/L HAA5} | ||
#' \item{pop_>30-45µg/L}{Population served by public water system with 30 - 45 ug/L HAA5} | ||
#' \item{pop_>45-60µg/L}{Population served by public water system with 45 - 60 ug/L HAA5} | ||
#' \item{pop_>60-75µg/L}{Population served by public water system with 60 - 75 ug/L HAA5} | ||
#' \item{pop_>75µg/L}{Population served by public water system more than 75 ug/L HAA5} | ||
#' \item{pop_on_PWS_with_non-detects}{Population served by public water system with no detectable HAA5} | ||
#' \item{pop_exposed_to_exceedances}{Population exposed to HAA5 that exceeds recommended limit} | ||
#' \item{perc_pop_exposed_to_exceedances}{Percentage of the total population exposed to HAA5 that exceeds recommended limits} | ||
#'} | ||
#' | ||
#' @examples | ||
#' data(haa5) | ||
#' @seealso \code{\link{dasehr-package}} | ||
#' | ||
#' @source Created using data downloaded from \url{https://doh.wa.gov/data-and-statistical-reports/washington-tracking-network-wtn/drinking-water}. | ||
"haa5" |
Oops, something went wrong.