bottomright: Grabs the bottom right corner of a data set

View source: R/corner.r

bottomrightR Documentation

Grabs the bottom right corner of a data set

Description

Display the bottom right corner of a rectangular data set

Usage

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

Arguments

x

The data

r

Number of rows to display

c

Number of columns to show

...

Arguments passed on to other functions

Details

Displays the bottom right corner of a rectangular data set.

This is a wrapper function for corner

Value

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

Author(s)

Jared P. Lander www.jaredlander.com

See Also

head tail corner topright bottomleft topleft left right

Examples


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


useful documentation built on Oct. 24, 2023, 9:07 a.m.