I am trying to get the RowCount of a specific column in my .csv file.
Table table;
float temperature = 15;
void setup() {
size(displayWidth, 800);
table = loadTable("data/wetterAppSentences.csv", "header");
if (temperature <= 7){
TableRow row = table.getRow(random(table.getRowCount()));
}
}
I tried using the header of my column to define it but .getRowCount() doesn't expect any arguments.