I am trying to open a CSV via LoadTable with Processing 2 then parse a column as an array.
I have this so far:
Table table;
void setup() {
table = loadTable("random.csv", "header");
If I do something like this:
for (TableRow row : table.rows()) {
int nums = row.getInt("Column1");
println(nums);
}
It displays all of the values in my table like it should. I would like to now store this into an array... e.g. int [ ]
Any help?