-
Notifications
You must be signed in to change notification settings - Fork 5
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 rpact-com/cran/release/3.4.0
cran/release/3.4.0
- Loading branch information
Showing
481 changed files
with
15,082 additions
and
10,913 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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,25 +1,42 @@ | ||
Package: rpact | ||
Title: Confirmatory Adaptive Clinical Trial Design and Analysis | ||
Version: 3.3.4 | ||
Date: 2023-02-14 | ||
Version: 3.4.0 | ||
Date: 2023-07-03 | ||
Authors@R: c( | ||
person( | ||
given = "Gernot", | ||
family = "Wassmer", | ||
email = "[email protected]", | ||
role = c("aut")), | ||
comment = c(ORCID = "0000-0001-9397-1794"), | ||
role = c("aut") | ||
), | ||
person( | ||
given = "Friedrich", | ||
family = "Pahlke", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-2105-2582"), | ||
role = c("aut", "cre")) | ||
) | ||
role = c("aut", "cre") | ||
), | ||
person( | ||
given = "Till", | ||
family = "Jensen", | ||
email = "[email protected]", | ||
role = c("ctb") | ||
), | ||
person( | ||
given = "Stephen", | ||
family = "Schueuerhuis", | ||
email = "[email protected]", | ||
role = c("ctb") | ||
)) | ||
Description: Design and analysis of confirmatory adaptive clinical trials with continuous, binary, and survival endpoints according to the methods described in the monograph by Wassmer and Brannath (2016) <doi:10.1007/978-3-319-32562-0>. This includes classical group sequential as well as multi-stage adaptive hypotheses tests that are based on the combination testing principle. | ||
License: LGPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
URL: https://www.rpact.org, https://www.rpact.com, https://github.com/rpact-com/rpact | ||
URL: https://www.rpact.org, | ||
https://www.rpact.com, | ||
https://github.com/rpact-com/rpact, | ||
https://rpact-com.github.io/rpact/ | ||
BugReports: https://github.com/rpact-com/rpact/issues | ||
Language: en-US | ||
Depends: | ||
|
@@ -31,14 +48,13 @@ Imports: | |
graphics, | ||
tools, | ||
rlang, | ||
knitr (>= 1.19), | ||
Rcpp (>= 1.0.3) | ||
LinkingTo: Rcpp | ||
Suggests: | ||
parallel, | ||
ggplot2 (>= 2.2.0), | ||
testthat (>= 3.0.0), | ||
mnormt (>= 1.5-7), | ||
knitr (>= 1.19), | ||
rmarkdown (>= 1.10) | ||
VignetteBuilder: knitr, rmarkdown | ||
RoxygenNote: 7.2.3 | ||
|
@@ -58,6 +74,7 @@ Collate: | |
'class_core_plot_settings.R' | ||
'f_core_plot.R' | ||
'class_design.R' | ||
'f_object_r_code.R' | ||
'f_analysis_base.R' | ||
'class_analysis_dataset.R' | ||
'class_analysis_stage_results.R' | ||
|
@@ -71,6 +88,7 @@ Collate: | |
'f_simulation_utilities.R' | ||
'f_simulation_base_survival.R' | ||
'class_simulation_results.R' | ||
'class_performance_score.R' | ||
'class_summary.R' | ||
'data.R' | ||
'f_analysis_base_means.R' | ||
|
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
Oops, something went wrong.