I have a tech.tablesaw.api.Table that got filled by SQL Result Set. But I want to overwrite one of the columns with other values before running SMILE (the setValue method below doesn't exist, but I'm looking for something like that). Is the Table object readonly? Or is there a way to do this? Thanks!
for(int r=0; r < theTable.rowCount(); r++) {
theTable.row(r).column("last_name").setValue("Smith");
}