-
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.
some basic work on developing the package
* Rdpack added * @param and text added to function * testthat scaffolding
- Loading branch information
1 parent
c25002a
commit 2e7452c
Showing
9 changed files
with
130 additions
and
43 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,19 +1,26 @@ | ||
Package: mimR | ||
Title: Multiple Imputation Marginalisation | ||
Version: 0.0.0.9000 | ||
Authors@R: | ||
Authors@R: c( | ||
person("Nathan", "Green", , "[email protected]", | ||
role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-2745-1736")) | ||
Description: Multiple Imputation Marginalisation. | ||
comment = c(ORCID = "0000-0003-2745-1736")), | ||
person("Antonio", "Remiro-Azocar", email = "[email protected]", | ||
role = c("aut"), | ||
comment = c(ORCID = "0000-0002-7263-4251"))) | ||
Description: Multiple Imputation Marginalisation with several different computation approaches. | ||
See Remiro‐Azócar A, Heath A, Baio G (2022). “Parametric G‐computation for compatibl | ||
indirect treatment comparisons with limited individual patient data.” | ||
Res. Synth. Methods, 1–31. ISSN 1759-2879, doi:10.1002/jrsm.1565, 2108.12208 | ||
License: GPL (>= 3) | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3.9000 | ||
Imports: | ||
boot, | ||
copula, | ||
rstanarm | ||
rstanarm, | ||
Rdpack (>= 0.7) | ||
Suggests: | ||
dplyr, | ||
ggplot2, | ||
|
@@ -26,3 +33,4 @@ Suggests: | |
testthat (>= 3.0.0) | ||
VignetteBuilder: knitr | ||
Config/testthat/edition: 3 | ||
RdMacros: Rdpack |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@article{RemiroAzocar2022, | ||
author = {Remiro‐Az{\'{o}}car, Antonio and Heath, Anna and Baio, Gianluca}, | ||
doi = {10.1002/jrsm.1565}, | ||
eprint = {2108.12208}, | ||
issn = {1759-2879}, | ||
journal = {Res. Synth. Methods}, | ||
pages = {1--31}, | ||
title = {{Parametric G‐computation for compatible indirect treatment comparisons with limited individual patient data}}, | ||
year = {2022} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 @@ | ||
test_that("multiplication works", { | ||
expect_equal(2 * 2, 4) | ||
}) |
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