printUD: Print UD

Description Usage Arguments Examples

Description

This function creates a table summarizing the uncertainty.

Usage

1
2
3
4
5
## S3 method for class 'UD_model'
print(x, ...)

## S3 method for class 'UD_stage'
print(x, ...)

Arguments

x

model wise uncertainty(UD_model class) or stage wise uncertainty(UD_stage class)

...

further arguments passed to or from other methods.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
set.seed(0)
stage1 <- LETTERS[1:3]
stage2 <- LETTERS[1:2]
stage3 <- LETTERS[1:4]
y <- rnorm(3*2*4)
data <- expand.grid(stage1=stage1,
                    stage2=stage2,
                    stage3=stage3)
stages <- names(data)
data <- cbind(data, y)

UD_bal_model_range <- UD_bal_model(data, "y", stages, u_range, flist_range)
print(UD_bal_model_range)

UD_bal_stage_range <- UD_model2stage(UD_bal_model_range)
print(UD_bal_stage_range)

UncDecomp documentation built on Nov. 7, 2019, 5:09 p.m.

Related to printUD in UncDecomp...