From last time…
• Saw the loadStrings() method for simple
reading of lines in a text file!
• Reviewed some classy homework images
CAP
Data II
Demo!
The Table Class
Review
Table myTable;
myTable = loadTable(“table.csv”, “header”);
TableRow row = myTable.getRow(3);
row.getString(“names”);
row.getFloat(“weight”);
row.getInt(“age”);
For next time…
• Iteration 3 Presentation, mixed groups!
• Bring your laptop or be otherwise prepared

33. Input II