Skip to contents

Print method for taxonomy entries.

Usage

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

Arguments

x

A morie_variable_taxonomy object.

...

Unused.

Value

x, invisibly.

Examples

# \donttest{
t <- morie_classify_variable("RecordID", "string", NULL, "any")
t$level
#> [1] "identifier"
t$role
#> [1] "identifier"
print(t)
#> Variable taxonomy: any :: RecordID
#>   level        : identifier
#>   cardinality  : discrete_high
#>   role         : identifier
#>   cross_year_safe : TRUE
# }