| tb_help | R Documentation |
tibble wrappersThin wrappers of functions from package tibble.
tb_help()
tb(
...,
.rows = NULL,
.name_repair = c("check_unique", "unique", "universal", "minimal")
)
trb(...)
tbr(..., .name_repair = c("check_unique", "unique", "universal", "minimal"))
as_tb(
x,
...,
.rows = NULL,
.name_repair = c("check_unique", "unique", "universal", "minimal"),
rownames = pkgconfig::get_config("tibble::rownames", NULL)
)
is_tb(x)
A tibble.
tb(): Thinly wraps tibble.
trb(): Thinly wraps tribble.
tbr(): Thinly wraps tibble_row.
as_tb(): Thinly wraps as_tibble.
is_tb(): Thinly wraps is_tibble.
Other wraps:
basics_help(),
dp(),
dt(),
gg_help(),
gr,
rd_help()
tb(letters = letters, numbers = 1:26, constant = pi)
trb(~letters, ~numbers, ~constant,
"a" , 1 , pi ,
"b" , 2 , pi ,
"c" , 3 , pi )
tbr("a", 1, pi)
as_tb(list(letters = letters, numbers = 1:26, constant = pi))
is_tb(tb(letters))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.