plus: Open up a 'tibble' (or similar) 'data.frame'

Description Usage Arguments Value Author(s) See Also Examples

Description

Open up a tibble (or similar) data.frame. Printing a tibble typically only displays a few rows of the table. + is used to open up the table fully, as if it were a data.frame.

Usage

1
"+"(e1, e2)

Arguments

e1

any object, or a data.frame

e2

any other object

Value

data.frame

Author(s)

Thomas P. Harte

See Also

data.frame, tibble, tbl_df

Examples

1
2
3
4
5
6
7
8
9
# mtcars is a regular data.frame
  mtcars
  mtcars %>% tbl_df
  mtcars %>% tbl_df %>% `+`

# with typical use as follows:
  x<- mtcars %>% tbl_df
  x
  +x

tharte/tutils documentation built on Feb. 11, 2020, 9:17 a.m.