-
Notifications
You must be signed in to change notification settings - Fork 34
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 #144 from sunroofgod/dev
v2023.9.12
- Loading branch information
Showing
82 changed files
with
3,343 additions
and
2,241 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 |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
^CONTRIBUTING.MD$ | ||
^figures$ | ||
^dabestr.Rmd$ | ||
^cran-comments\.md$ | ||
^revdep$ |
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,14 +1,16 @@ | ||
Package: dabestr | ||
Type: Package | ||
Title: Data Analysis using Bootstrap-Coupled Estimation | ||
Version: 0.9.9.9 | ||
Version: 2023.9.12 | ||
Authors@R: c( | ||
person("Kah Seng", "Lian", email = "[email protected]", role = c("cre", "aut")), | ||
person("Zhuoyu", "Wang", email = "[email protected],edu", role = c("aut")), | ||
person("Jun Yang", "Liao", email = "[email protected]", role = c("aut")), | ||
person("Joses W.", "Ho", email = "[email protected]", role = c("aut")), | ||
person("Yishan", "Mai", email = "[email protected]", role = c("aut", "cre")), | ||
person("Kah Seng", "Lian", email = "[email protected]", role = c("aut")), | ||
person("Zhuoyu", "Wang", email = "[email protected],edu", role = "aut"), | ||
person("Jun Yang", "Liao", email = "[email protected]", role = "aut"), | ||
person("Joses W.", "Ho", email = "[email protected]", role = "aut"), | ||
person("ACCLAB", role = c("cph", "fnd")), | ||
person("Tayfun", "Tumkaya", role = c("ctb"))) | ||
person("Tayfun", "Tumkaya", role = "aut"), | ||
person("Felicia", role = "aut")) | ||
Description: Data Analysis using Bootstrap-Coupled ESTimation. | ||
Estimation statistics is a simple framework that avoids the pitfalls of | ||
significance testing. It uses familiar statistical concepts: means, | ||
|
@@ -22,7 +24,7 @@ Description: Data Analysis using Bootstrap-Coupled ESTimation. | |
separate but aligned axes. | ||
Estimation plots are introduced in Ho et al., Nature Methods 2019, 1548-7105. | ||
<doi:10.1038/s41592-019-0470-3>. | ||
The free-to-view PDF is located at <https://rdcu.be/bHhJ4>. | ||
The free-to-view PDF is located at <https://www.nature.com/articles/s41592-019-0470-3.epdf?author_access_token=Euy6APITxsYA3huBKOFBvNRgN0jAjWel9jnR3ZoTv0Pr6zJiJ3AA5aH4989gOJS_dajtNr1Wt17D0fh-t4GFcvqwMYN03qb8C33na_UrCUcGrt-Z0J9aPL6TPSbOxIC-pbHWKUDo2XsUOr3hQmlRew%3D%3D>. | ||
License: Apache License (>= 2) | ||
Encoding: UTF-8 | ||
URL: https://github.com/ACCLAB/dabestr, | ||
|
@@ -42,22 +44,20 @@ Imports: | |
grid, | ||
scales, | ||
ggsci, | ||
colorspace, | ||
cli, | ||
boot, | ||
stats, | ||
stringr, | ||
coin, | ||
mvtnorm, | ||
multcomp, | ||
brunnermunzel | ||
brunnermunzel, | ||
methods | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
Suggests: | ||
testthat (>= 3.0.0), | ||
vdiffr, | ||
knitr, | ||
rmarkdown | ||
rmarkdown, | ||
kableExtra | ||
Config/testthat/edition: 3 | ||
LazyData: true | ||
VignetteBuilder: knitr | ||
VignetteBuilder: knitr, kableExtra |
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,3 +1,5 @@ | ||
utils::globalVariables(c("N", "n", "plot_extra_yaxis", "proportion_success", "sd", "sf_change", "success_change", | ||
"tag", "x", "x_axis_raw", "x_failure", "x_success", "xend", "y", "y_failure", "y_success", | ||
"failure_change")) | ||
utils::globalVariables(c( | ||
"N", "n", "plot_extra_yaxis", "proportion_success", "sd", "sf_change", "success_change", | ||
"tag", "x", "x_axis_raw", "x_failure", "x_success", "xend", "y", "y_failure", "y_success", | ||
"failure_change", "y_top_start", "y_top_end", "y_bot_start", "y_bot_end" | ||
)) |
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,3 +1,3 @@ | ||
#' @importFrom magrittr %>% | ||
#' @export | ||
magrittr::`%>%` | ||
magrittr::`%>%` |
Oops, something went wrong.