printUD {UncDecomp}R Documentation

Print UD

Description

This function creates a table summarizing the uncertainty.

Usage

## 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

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)

[Package UncDecomp version 1.0.1 Index]