is_tidytable | R Documentation |
This function returns TRUE for tidytables or subclasses of tidytables, and FALSE for all other objects.
is_tidytable(x)
x |
An object |
df <- data.frame(x = 1:3, y = 1:3)
is_tidytable(df)
df <- tidytable(x = 1:3, y = 1:3)
is_tidytable(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.