dim.dataDict: Dimensions of a 'dataDict'

Description Usage Arguments Value Examples

Description

Generic function to retrieve the dimensions of the data.frame-like object that the dataDict is based on. 'ncol' and 'nrow' will also work, since they call 'dim' in their implementation.

Usage

1
2
## S3 method for class 'dataDict'
dim(x)

Arguments

x

A dataDict object.

Value

The dimensions of the original data.frame-like object.

Examples

1
2
3
4
dd <- dataDict(mtcars)
dim(dd)
ncol(dd)
nrow(dd)

KO112/KO documentation built on Oct. 2, 2020, 9:21 a.m.