R/table-wrapper.R
table_create.Rd
Creates a new Table object with specified dimensions.
table_create(numberOfRows, numberOfColumns = NULL, columnNames = NULL)
Number of rows
Number of columns (optional if columnNames provided)
Character vector of column names (optional)
A Table object
Table for object methods
Table
tbl <- table_create(numberOfRows = 3, columnNames = c("speaker", "f0")) tbl2 <- table_create(numberOfRows = 3, numberOfColumns = 2)