is_tidytable: Test if the object is a tidytable

View source: R/is_tidytable.R

is_tidytableR Documentation

Test if the object is a tidytable

Description

This function returns TRUE for tidytables or subclasses of tidytables, and FALSE for all other objects.

Usage

is_tidytable(x)

Arguments

x

An object

Examples

df <- data.frame(x = 1:3, y = 1:3)

is_tidytable(df)

df <- tidytable(x = 1:3, y = 1:3)

is_tidytable(df)

tidytable documentation built on Oct. 5, 2023, 5:07 p.m.