Warning
p5.Table will be removed in a future version of p5.js to make way for a new, friendlier version :)
Use removeColumn() to remove an existing column from a Table object. The column to be removed may be identified by either its title (a String) or its index value (an int). removeColumn(0) would remove the first column, removeColumn(1) would remove the second column, and so on.
Examples
Syntax
removeColumn(column)
Parameters
column
String|Integer: columnName (string) or ID (number)
Notice any errors or typos? Please let us know. Please feel free to edit src/io/p5.Table.js and open a pull request!
Related References
p5.Table
Table objects store data with multiple rows and columns, much like in a traditional spreadsheet.
p5.TableRow
A TableRow object represents a single row of data values, stored in columns, from a table.
addColumn
Use addColumn() to add a new column to a Table object.
addRow
Use addRow() to add a new row of data to a p5.Table object.