Skip to content

Commit 7def71e

Browse files
committed
fix for CRAN note
1 parent e1bfe38 commit 7def71e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: SimDesign
22
Title: Structure for Organizing Monte Carlo Simulation Designs
3-
Version: 1.10
3+
Version: 1.10.1
44
Authors@R: c(person("Phil", "Chalmers", email = "[email protected]", role = c("aut", "cre")),
55
person("Matthew", "Sigal", role = c("ctb")),
66
person("Ogreden", family="Oguzhan", role = c("ctb")))

R/SimBoot.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Function to present bootstrap standard errors estimates for Monte Carlo simulation meta-statistics
22
#'
3-
#' This function generates confidence intervals for the meta-statistics called within the
3+
#' This function generates bootstrap confidence intervals for the meta-statistics called within the
44
#' \code{summarise} function with \code{\link{runSimulation}}
55
#' that included the argument \code{bootSE = TRUE}.
66
#'
@@ -21,6 +21,7 @@
2121
#'
2222
#' @examples
2323
#'
24+
#' \dontrun{
2425
#' #SimFunctions()
2526
#'
2627
#' Design <- data.frame(N = c(10, 20, 30))
@@ -57,6 +58,8 @@
5758
#' res2
5859
#' SimBoot(res2) # more reasonable CI range
5960
#'
61+
#' }
62+
#'
6063
SimBoot <- function(results, CI = .99){
6164
nms <- attr(results, 'design_names')
6265
q <- -qnorm((1 - .99)/2)

man/SimBoot.Rd

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)