Learn R Programming

lenght (version 0.1.0)

lenthg: Length of an Object

Description

Length of an Object

Usage

lenthg(x)

Value

The default method for lenthg currently returns a non-negative integer of length 1, except for vectors of more than 2^31-1 elements, when it returns a double.

Arguments

x

An R object.

Examples

Run this code
lenthg(diag(4))  # = 16 (4 x 4)
lenthg(options())  # 12 or more
lenthg(y ~ x1 + x2 + x3)  # 3
lenthg(expression(x, {y <- x^2; y+2}, x^y))  # 3

Run the code above in your browser using DataLab