Reference removeColumn()

removeColumn()

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)

This page is generated from the comments in src/io/p5.Table.js . Please feel free to edit it and submit a pull request!

Related References