-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
cff-version: 1.2.0 | ||
message: "Matthew Hamilton <[email protected]> [aut, cre] (<https://orcid.org/0000-0001-7407-9194>) and Glen Wiesner [aut] (<https://orcid.org/0000-0002-0071-130X>) (2023). ready4fun: Author and Document Functions that Implement Transferable Health | ||
Economic Model Algorithms. Version 0.0.0.9535. Zenodo. https://doi.org/10.5281/zenodo.5611779" | ||
message: "Matthew Hamilton <[email protected]> [aut, cre, cph] (<https://orcid.org/0000-0001-7407-9194>) and Glen Wiesner [aut] (<https://orcid.org/0000-0002-0071-130X>) (2024). ready4fun: Author and Document Functions that Implement Transferable Health | ||
Economic Model Algorithms. Version 0.0.0.9537. Zenodo. https://doi.org/10.5281/zenodo.5611779" | ||
authors: | ||
- family-names: "(<https://orcid.org/0000-0001-7407-9194>)" | ||
given-names: "Matthew Hamilton <[email protected]> [aut, cre]" | ||
given-names: "Matthew Hamilton <[email protected]> [aut, cre, cph]" | ||
- family-names: "(<https://orcid.org/0000-0002-0071-130X>)" | ||
given-names: "Glen Wiesner [aut]" | ||
title: "ready4fun: Author and Document Functions that Implement Transferable Health | ||
Economic Model Algorithms" | ||
version: 0.0.0.9535 | ||
version: 0.0.0.9537 | ||
doi: 10.5281/zenodo.5611779 | ||
date-released: 2023-12-02 | ||
date-released: 2024-04-10 | ||
url: "https://ready4-dev.github.io/ready4fun/" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,47 @@ | ||
#' Pipe operator | ||
#' | ||
#' Implements: https://github.com/sckott/analogsea/issues/32 | ||
#' and https://github.com/rstudio/ggvis/blob/master/R/pipe.R. | ||
#' Import of [magrittr::%>%()]. See magrittr package documentation for detailed description. | ||
#' | ||
#' @importFrom magrittr %>% | ||
#' @name %>% | ||
#' @rdname pipe | ||
#' @export | ||
#' @param lhs,rhs An object and a function to apply to it | ||
#' @keywords internal | ||
#' @seealso [magrittr::%>%()] | ||
NULL | ||
|
||
#' Deprecated function | ||
#' | ||
#' Import of deprecated function as recommended in lifecycle package documentation. | ||
#' Import of [lifecycle::deprecated()]. See lifecycle package documentation for detailed description. | ||
#' | ||
#' @importFrom lifecycle deprecated | ||
#' @name deprecated | ||
#' @rdname deprecated | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [lifecycle::deprecated()] | ||
NULL | ||
|
||
#' Non standard evaluation assignment function | ||
#' | ||
#' Import of := function, implementing [rlang::dyn-dots()]. See rlang package documentation for detailed description. | ||
#' | ||
#' @importFrom rlang := | ||
#' @name := | ||
#' @rdname nseequals | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [rlang::dyn-dots()] | ||
NULL | ||
|
||
#' Dot Data function | ||
#' | ||
#' Import of [rlang::.data()]. See rlang package documentation for detailed description. | ||
#' | ||
#' @importFrom rlang .data | ||
#' @name .data | ||
#' @rdname dotdata | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [rlang::.data()] | ||
NULL |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ pkg_desc_ls <- fns_env_ls$fns_env$make_pkg_desc_ls( | |
utils::person( | ||
given = "Matthew", family = "Hamilton", | ||
email = "[email protected]", | ||
role = c("aut", "cre"), | ||
role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0001-7407-9194") | ||
), | ||
utils::person("Glen", "Wiesner", | ||
|
@@ -271,7 +271,7 @@ manifest_ls <- pkg_desc_ls %>% | |
get_fn_types = "All functions authored with the `ready4` framework need to begin with a verb. The definitions of all meaningful verbs used in functions authored for a ready4 framework model implementation can be retrieved using `get_fn_types()`.", | ||
get_obj_types ="The type of input (arguments) required and output (return) produced by a function can be efficiently communicated by using meaningful suffices. Definitions of all meaningful suffices used in functions authored for a ready4 framework model implementation can be retrieved using `get_obj_types()`."), | ||
user_manual_fns_chr = c("get_abbrs", "get_fn_types", "get_obj_types")), | ||
copyright_holders_chr = "Orygen", | ||
copyright_holders_chr = "Matthew Hamilton and Orygen", | ||
dev_pkgs_chr = c("ready4", "ready4use", "ready4show"), | ||
inc_pkg_meta_data_1L_lgl = T, ### | ||
lifecycle_stage_1L_chr = "experimental", | ||
|
@@ -286,3 +286,5 @@ manifest_ls <- fns_env_ls$fns_env$write_package(manifest_ls, self_serve_1L_lgl = | |
usethis::use_dev_package("ready4show", remote = "ready4-dev/ready4show") | ||
devtools::build_vignettes() | ||
# fns_env_ls$fns_env$read_fns(fns_dir_1L_chr,use_env_1L_lgl = F) | ||
readLines("_pkgdown.yml") %>% stringr::str_replace(" - text: Model"," - text: Framework") %>% | ||
writeLines("_pkgdown.yml") |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ bibentry( | |
bibtype = "Manual", | ||
doi = "10.5281/zenodo.5611779", | ||
title = paste0(meta$Package,": ",meta$Title), | ||
author = c(person("Matthew Hamilton <[email protected]> [aut, cre]", "(<https://orcid.org/0000-0001-7407-9194>)"), person("Glen Wiesner [aut]", "(<https://orcid.org/0000-0002-0071-130X>)")), | ||
year = "2023", | ||
author = c(person("Matthew Hamilton <[email protected]> [aut, cre, cph]", "(<https://orcid.org/0000-0001-7407-9194>)"), person("Glen Wiesner [aut]", "(<https://orcid.org/0000-0002-0071-130X>)")), | ||
year = "2024", | ||
note = sprintf("R package version %s", meta$Version), | ||
url = "https://ready4-dev.github.io/ready4fun/", | ||
textVersion = paste("Matthew Hamilton <[email protected]> [aut, cre] (<https://orcid.org/0000-0001-7407-9194>) and Glen Wiesner [aut] (<https://orcid.org/0000-0002-0071-130X>) ", | ||
"(2023).", | ||
textVersion = paste("Matthew Hamilton <[email protected]> [aut, cre, cph] (<https://orcid.org/0000-0001-7407-9194>) and Glen Wiesner [aut] (<https://orcid.org/0000-0002-0071-130X>) ", | ||
"(2024).", | ||
paste0(meta$Package,": ",meta$Title, | ||
"."), | ||
paste0(sprintf("Version %s", meta$Version),"."), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,47 @@ | ||
#' Pipe operator | ||
#' | ||
#' Implements: https://github.com/sckott/analogsea/issues/32 | ||
#' and https://github.com/rstudio/ggvis/blob/master/R/pipe.R. | ||
#' Import of [magrittr::%>%()]. See magrittr package documentation for detailed description. | ||
#' | ||
#' @importFrom magrittr %>% | ||
#' @name %>% | ||
#' @rdname pipe | ||
#' @export | ||
#' @param lhs,rhs An object and a function to apply to it | ||
#' @keywords internal | ||
#' @seealso [magrittr::%>%()] | ||
NULL | ||
|
||
#' Deprecated function | ||
#' | ||
#' Import of deprecated function as recommended in lifecycle package documentation. | ||
#' Import of [lifecycle::deprecated()]. See lifecycle package documentation for detailed description. | ||
#' | ||
#' @importFrom lifecycle deprecated | ||
#' @name deprecated | ||
#' @rdname deprecated | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [lifecycle::deprecated()] | ||
NULL | ||
|
||
#' Non standard evaluation assignment function | ||
#' | ||
#' Import of := function, implementing [rlang::dyn-dots()]. See rlang package documentation for detailed description. | ||
#' | ||
#' @importFrom rlang := | ||
#' @name := | ||
#' @rdname nseequals | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [rlang::dyn-dots()] | ||
NULL | ||
|
||
#' Dot Data function | ||
#' | ||
#' Import of [rlang::.data()]. See rlang package documentation for detailed description. | ||
#' | ||
#' @importFrom rlang .data | ||
#' @name .data | ||
#' @rdname dotdata | ||
#' @export | ||
#' @keywords internal | ||
#' @seealso [rlang::.data()] | ||
NULL |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.