Skip to content

Commit

Permalink
Man pages improved
Browse files Browse the repository at this point in the history
  • Loading branch information
fpahlke committed May 28, 2024
1 parent 2d42c41 commit a918de4
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rpact
Title: Confirmatory Adaptive Clinical Trial Design and Analysis
Version: 4.0.0.9242
Version: 4.0.0.9243
Date: 2024-05-28
Authors@R: c(
person(
Expand Down
4 changes: 2 additions & 2 deletions R/class_summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
## |
## | Contact us for information about our services: info@rpact.com
## |
## | File version: $Revision: 7941 $
## | Last changed: $Date: 2024-05-28 08:44:36 +0200 (Di, 28 Mai 2024) $
## | File version: $Revision: 7946 $
## | Last changed: $Date: 2024-05-28 12:08:57 +0200 (Di, 28 Mai 2024) $
## | Last changed by: $Author: pahlke $
## |

Expand Down
12 changes: 6 additions & 6 deletions R/f_as251.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
## |
## | Contact us for information about our services: info@rpact.com
## |
## | File version: $Revision: 7742 $
## | Last changed: $Date: 2024-03-22 13:46:29 +0100 (Fr, 22 Mrz 2024) $
## | File version: $Revision: 7947 $
## | Last changed: $Date: 2024-05-28 14:25:47 +0200 (Di, 28 Mai 2024) $
## | Last changed by: $Author: pahlke $
## |

Expand All @@ -36,7 +36,7 @@
#'
#' @description
#' Calculates the Multivariate Normal Distribution with Product Correlation Structure published
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3 \doi{10.2307/2347754}.
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3, \doi{10.2307/2347754}.
#'
#' @details
#' This is a wrapper function for the original Fortran 77 code.
Expand Down Expand Up @@ -82,7 +82,7 @@ mvnprd <- function(..., A, B, BPD, EPS = 1e-06, INF, IERC = 1, HINC = 0) {
#'
#' @description
#' Calculates the Multivariate Normal Distribution with Product Correlation Structure published
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3 \doi{10.2307/2347754}.
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3, \doi{10.2307/2347754}.
#'
#' @details
#' For a multivariate normal vector with correlation structure
Expand Down Expand Up @@ -142,7 +142,7 @@ as251Normal <- function(lower, upper, sigma, ...,
#'
#' @description
#' Calculates the Multivariate Normal Distribution with Product Correlation Structure published
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3 \doi{10.2307/2347754}.
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3, \doi{10.2307/2347754}.
#'
#' @details
#' This is a wrapper function for the original Fortran 77 code.
Expand Down Expand Up @@ -201,7 +201,7 @@ mvstud <- function(..., NDF, A, B, BPD, D, EPS = 1e-06, INF, IERC = 1, HINC = 0)
#'
#' @description
#' Calculates the Multivariate Normal Distribution with Product Correlation Structure published
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3 \doi{10.2307/2347754}.
#' by Charles Dunnett, Algorithm AS 251.1 Appl.Statist. (1989), Vol.38, No.3, \doi{10.2307/2347754}.
#'
#' @details
#' For a multivariate normal vector with correlation structure
Expand Down
4 changes: 2 additions & 2 deletions R/f_core_constants.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
## |
## | Contact us for information about our services: info@rpact.com
## |
## | File version: $Revision: 7940 $
## | Last changed: $Date: 2024-05-27 15:47:41 +0200 (Mo, 27 Mai 2024) $
## | File version: $Revision: 7946 $
## | Last changed: $Date: 2024-05-28 12:08:57 +0200 (Di, 28 Mai 2024) $
## | Last changed by: $Author: pahlke $
## |

Expand Down
8 changes: 4 additions & 4 deletions R/f_simulation_performance_score.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
## |
## | Contact us for information about our services: info@rpact.com
## |
## | File version: $Revision: 7905 $
## | Last changed: $Date: 2024-05-21 17:15:42 +0200 (Di, 21 Mai 2024) $
## | File version: $Revision: 7947 $
## | Last changed: $Date: 2024-05-28 14:25:47 +0200 (Di, 28 Mai 2024) $
## | Last changed by: $Author: pahlke $
## |

Expand All @@ -24,8 +24,8 @@
#'
#' @description
#' Calculates the conditional performance score, its sub-scores and components according to
#' [Herrmann et al. (2020)](https://doi.org/10.1002/sim.8534) and
#' [Bokelmann et al. (2024)](https://doi.org/10.1186/s12874-024-02150-4) for a given
#' (Herrmann et al. (2020), \doi{10.1002/sim.8534}) and
#' (Bokelmann et al. (2024), \doi{10.1186/s12874-024-02150-4}) for a given
#' simulation result from a two-stage design with continuous or binary endpoint.
#' Larger (sub-)score and component values refer to a better performance.
#'
Expand Down
2 changes: 1 addition & 1 deletion man/as251Normal.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/as251StudentT.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/getPerformanceScore.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/mvnprd.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/mvstud.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/testthat/test-f_design_plan_count_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
## |
## | File name: test-f_design_plan_count_data.R
## | Creation date: 28 May 2024, 09:45:32
## | File version: $Revision$
## | Last changed: $Date$
## | Last changed by: $Author$
## | File version: $Revision: 7946 $
## | Last changed: $Date: 2024-05-28 12:08:57 +0200 (Di, 28 Mai 2024) $
## | Last changed by: $Author: pahlke $
## |

test_plan_section("Testing the Sample Size Calculation of Count Data Designs for Different Designs and Arguments")
Expand Down

0 comments on commit a918de4

Please sign in to comment.