powered by
This function returns TRUE for tidytables or subclasses of tidytables, and FALSE for all other objects.
is_tidytable(x)
An object
# NOT RUN { dt <- data.table(x = 1) is_tidytable(dt) # Returns FALSE df <- tidytable(x = 1) is_tidytable(df) # Returns TRUE # }
Run the code above in your browser using DataLab