rapportools (version 1.0)

is.tabular: Tabular Structure

Description

Checks if object has "tabular" structure (not to confuse with table) - in this particular case, that means matrix and data.frame objects only.

Usage

is.tabular(x)

Arguments

x

an object to be checked for "tabular" format

Value

a logical value indicating that provided object has tabular structure

Examples

Run this code
# NOT RUN {
is.tabular(HairEyeColor[, , 1])  # [1] TRUE
is.tabular(mtcars)               # [1] TRUE
is.tabular(table(mtcars$cyl))    # [1] FALSE
is.tabular(rnorm(100))           # [1] FALSE
is.tabular(LETTERS)              # [1] FALSE
is.tabular(pi)                   # [1] FALSE
# }

Run the code above in your browser using DataCamp Workspace