Learn R Programming

refineR (version 2.0.0)

print.RWDRI: Standard print method for objects of class 'RWDRI'

Description

Standard print method for objects of class 'RWDRI'

Usage

# S3 method for RWDRI
print(
  x,
  RIperc = c(0.025, 0.975),
  uncertaintyRegion = c("bootstrapCI", "uncertaintyMargin"),
  CIprop = 0.95,
  UMprop = 0.9,
  pointEst = c("fullDataEst", "medianBS"),
  ...
)

Value

		No return value. Instead, a summary is printed.

Arguments

x

(object) of class 'RWDRI'

RIperc

(numeric) value specifying the percentiles, which define the reference interval

uncertaintyRegion

(character) specifying the type of the uncertainty region around point estimates

CIprop

(numeric) value specifying the central region for estimation of confidence intervals

UMprop

(numeric) value specifying the central region for estimation of uncertainty margins

pointEst

(character) specifying the point estimate determination: (1) using the full dataset ("fullDataEst"), (2) calculating the median model from all bootstrap samples ("medianBS"), (2) works only if NBootstrap > 0

...

additional arguments passed forward to other functions.

Author

Christopher Rank christopher.rank@roche.com

Examples

Run this code
if (FALSE) {
x <- refineR::findRI(refineR::testcase1)
print(x, uncertaintyRegion = "bootstrapCI")
print(x, uncertaintyRegion = "uncertaintyMargin")
}

Run the code above in your browser using DataLab