exuber (version 0.3.0)

tidy.mc_cv: Tidy an cv object

Description

Tidy an cv object

Usage

# S3 method for mc_cv
tidy(x, format = c("wide", "long"), ...)

# S3 method for wb_cv tidy(x, format = c("wide", "long"), ...)

# S3 method for sb_cv tidy(x, format = c("wide", "long"), ...)

# S3 method for mc_cv augment(x, format = c("wide", "long"), ...)

# S3 method for wb_cv augment(x, format = c("wide", "long"), ...)

# S3 method for sb_cv augment(x, format = c("wide", "long"), ...)

Arguments

x

An cv object

format

Long or wide format

...

Additional arguments. Not used.

Value

A A tibble::tibble()

  • sig The significance level.

  • name The name of the series (when format is "long")

  • crit The critical value (when format is "long")

Examples

Run this code
# NOT RUN {
mc <- mc_cv(100)

# Get the critical values
tidy(mc)

# Get the critical value sequences
augment(mc)

# }

Run the code above in your browser using DataLab