Learn R Programming

tailor (version 0.1.0)

tidy.tailor: Tidy a tailor object

Description

Describe a tailor's adjustments in a tibble with one row per adjustment.

Usage

# S3 method for tailor
tidy(x, number = NA, ...)

Value

A tibble containing information about the tailor's adjustments including their ordering, whether they've been trained, and whether they require training with a separate calibration set.

Arguments

x

A tailor() object.

number

Optional. A single integer between 1 and the number of adjustments.

...

Currently unused; must be empty.

Examples

Run this code
if (FALSE) { # rlang::is_installed("probably")
tailor() |>
  adjust_numeric_range(lower_limit = 1) |>
  tidy()
}

Run the code above in your browser using DataLab