-
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.
- Loading branch information
1 parent
96c2b9a
commit 6898388
Showing
5 changed files
with
64 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
import(dplyr) | ||
import(naniar) | ||
import(readr) | ||
import(stringr) | ||
import(tidyr) | ||
importFrom(tibble,tibble) |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#' `dasehr`: Load data and packages needed for DaSEH (Data Science for | ||
#' Environmental Health) | ||
#' | ||
#' @details | ||
#' | ||
#' Here is a list of the datasets. They are already stored as objects when you | ||
#' load the package. | ||
#' * `calenviroscreen`: Description here | ||
|
||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
## usethis namespace: start | ||
#' @importFrom tibble tibble | ||
#' @import readr | ||
#' @import dplyr | ||
#' @import tidyr | ||
#' @import naniar | ||
#' @import stringr | ||
## usethis namespace: end | ||
NULL |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.onLoad <- function(libname, pkgname){ | ||
message(paste("Loading", pkgname, "🌼")) | ||
message(paste("Run ?dasehr for more information on this package its datasets.")) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
test_that("Is non-empty tibble", { | ||
expect_false( | ||
dim(calenviroscreen)[1] == 0 | ||
) | ||
expect_false( | ||
dim(calenviroscreen)[2] == 0 | ||
) | ||
}) |