Learn R Programming

useful (version 1.2.6.1)

bottomleft: Grabs the bottom left corner of a data set

Description

Display the bottom left corner of a rectangular data set

Usage

bottomleft(x, r = 5L, c = 5L, ...)

Value

... The bottom left corner of the data set that was requested. The size depends on r and c.

Arguments

x

The data

r

Number of rows to display

c

Number of columns to show

...

Arguments passed on to other functions

Author

Jared P. Lander www.jaredlander.com

Details

Displays the bottom left corner of a rectangular data set.

This is a wrapper function for corner

See Also

head tail corner topright topleft bottomright left right

Examples

Run this code

data(diamonds)
head(diamonds)      # displays all columns
bottomleft(diamonds)    # displays last 5 rows and only the first 5 columns

Run the code above in your browser using DataLab