Skip to contents

Create a new tabulate table

Usage

tabulate_table()

table_add_row(table, row)

Arguments

table

A table created with tabulate_table().

row

A character vector or a tabulate table.

Value

A tabulate_table.

Functions

  • table_add_row: Adds rows to the table.

Examples

table <- tabulate_table() %>%
  table_add_row("hello") %>%
  table_add_row("world")
table
#> +-------+
#> | hello |
#> +-------+
#> | world |
#> +-------+