MCPcopy Index your code
hub / github.com/processing/processing / removeTitleRow

Method removeTitleRow

core/src/processing/data/Table.java:2154–2160  ·  view source on GitHub ↗

Remove the first row from the data set, and use it as the column titles. Use loadTable("table.csv", "header") instead.

()

Source from the content-addressed store, hash-verified

2152 * Use loadTable("table.csv", "header") instead.
2153 */
2154 @Deprecated
2155 public String[] removeTitleRow() {
2156 String[] titles = getStringRow(0);
2157 removeRow(0);
2158 setColumnTitles(titles);
2159 return titles;
2160 }
2161
2162
2163 public void setColumnTitles(String[] titles) {

Callers 1

odsParseSheetMethod · 0.95

Calls 3

getStringRowMethod · 0.95
removeRowMethod · 0.95
setColumnTitlesMethod · 0.95

Tested by

no test coverage detected