Skip to contents

Strip attributes from a vector for attribute-agnostic processing

Usage

morie_eda_as_vector(x)

Arguments

x

A vector.

Value

The vector's underlying values with attributes removed.

Examples

morie_eda_as_vector(structure(1:3, foo = "bar"))
#> [1] 1 2 3