len: Allows finding the 'length' without knowledge of...

Description Usage Arguments Examples

Description

Allows finding the 'length' without knowledge of dimensionality.

Usage

1

Arguments

data

any R object

Examples

1
2
3
4
len(list(1,2,3))
len(c(1,2,3,4))
df<-data.frame(a=c(1,2,3),b=c(1,2,3))
len(df)

Example output

[1] 3
[1] 4
[1] 3

rowr documentation built on May 1, 2019, 11:29 p.m.

Related to len in rowr...