View source: R/Utility_Functions.R
all_classes | R Documentation |
Converts the vector of classes for an object to a single comma delimited character value.
all_classes(x)
x |
An object whose classes you want to examine. |
This function uses class(x) to extract the vector of classes for an object then collapses it into a single comma delimited character value.
A character value listing the object's classes.
library(tibble)
x <- tibble(x = 1:3, y = letters[1:3])
class(x)
all_classes(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.