<%
// Copy this table definition to a file named HeightWeightData.jsp
// so it can be included in the ScatterPlot sample programs
table.addColumn(1, java.lang.String.class, null);
table.setColumnLabel(1, "Name");
table.addColumn(2, java.lang.String.class, null);
table.setColumnLabel(2, "Gender");
table.addColumn(3, java.lang.Double.class, null);
table.setColumnLabel(3, "Age");
table.addColumn(4, java.lang.Double.class, null);
table.setColumnLabel(4, "Height");
table.addColumn(5, java.lang.Double.class, null);
table.setColumnLabel(5, "Weight");
table.addRow(1);
table.addRow(2);
table.addRow(3);
table.addRow(4);
table.addRow(5);
table.addRow(6);
table.addRow(7);
table.addRow(8);
table.addRow(9);
table.addRow(10);
table.addRow(11);
table.addRow(12);
table.addRow(13);
table.addRow(14);
table.addRow(15);
table.addRow(16);
table.addRow(17);
table.addRow(18);
table.addRow(19);
table.setCell(1, 1, "Alfred");
table.setCell(1, 2, "M");
table.setCell(1, 3, new Double(14));
table.setCell(1, 4, new Double(69));
table.setCell(1, 5, new Double(112.5));
table.setCell(2, 1, "Alice");
table.setCell(2, 2, "F");
table.setCell(2, 3, new Double(13));
table.setCell(2, 4, new Double(56.5));
table.setCell(2, 5, new Double(84));
table.setCell(3, 1, "Barbara");
table.setCell(3, 2, "F");
table.setCell(3, 3, new Double(13));
table.setCell(3, 4, new Double(65.3));
table.setCell(3, 5, new Double(98));
table.setCell(4, 1, "Carol");
table.setCell(4, 2, "F");
table.setCell(4, 3, new Double(14));
table.setCell(4, 4, new Double(62.8));
table.setCell(4, 5, new Double(102.5));
table.setCell(5, 1, "Henry");
table.setCell(5, 2, "M");
table.setCell(5, 3, new Double(14));
table.setCell(5, 4, new Double(63.5));
table.setCell(5, 5, new Double(102.5));
table.setCell(6, 1, "James");
table.setCell(6, 2, "M");
table.setCell(6, 3, new Double(12));
table.setCell(6, 4, new Double(57.3));
table.setCell(6, 5, new Double(83));
table.setCell(7, 1, "Jane");
table.setCell(7, 2, "F");
table.setCell(7, 3, new Double(12));
table.setCell(7, 4, new Double(59.8));
table.setCell(7, 5, new Double(84.5));
table.setCell(8, 1, "Janet");
table.setCell(8, 2, "F");
table.setCell(8, 3, new Double(15));
table.setCell(8, 4, new Double(62.5));
table.setCell(8, 5, new Double(112.5));
table.setCell(9, 1, "Jeffrey");
table.setCell(9, 2, "M");
table.setCell(9, 3, new Double(13));
table.setCell(9, 4, new Double(62.5));
table.setCell(9, 5, new Double(84));
table.setCell(10, 1, "John");
table.setCell(10, 2, "M");
table.setCell(10, 3, new Double(12));
table.setCell(10, 4, new Double(59));
table.setCell(10, 5, new Double(99.5));
table.setCell(11, 1, "Joyce");
table.setCell(11, 2, "F");
table.setCell(11, 3, new Double(11));
table.setCell(11, 4, new Double(51.3));
table.setCell(11, 5, new Double(50.5));
table.setCell(12, 1, "Judy");
table.setCell(12, 2, "F");
table.setCell(12, 3, new Double(14));
table.setCell(12, 4, new Double(64.3));
table.setCell(12, 5, new Double(90));
table.setCell(13, 1, "Louise");
table.setCell(13, 2, "F");
table.setCell(13, 3, new Double(12));
table.setCell(13, 4, new Double(56.3));
table.setCell(13, 5, new Double(77));
table.setCell(14, 1, "Mary");
table.setCell(14, 2, "F");
table.setCell(14, 3, new Double(15));
table.setCell(14, 4, new Double(66.5));
table.setCell(14, 5, new Double(112));
table.setCell(15, 1, "Philip");
table.setCell(15, 2, "M");
table.setCell(15, 3, new Double(16));
table.setCell(15, 4, new Double(72));
table.setCell(15, 5, new Double(150));
table.setCell(16, 1, "Robert");
table.setCell(16, 2, "M");
table.setCell(16, 3, new Double(12));
table.setCell(16, 4, new Double(64.8));
table.setCell(16, 5, new Double(128));
table.setCell(17, 1, "Ronald");
table.setCell(17, 2, "M");
table.setCell(17, 3, new Double(15));
table.setCell(17, 4, new Double(67));
table.setCell(17, 5, new Double(133));
table.setCell(18, 1, "Thomas");
table.setCell(18, 2, "M");
table.setCell(18, 3, new Double(11));
table.setCell(18, 4, new Double(57.5));
table.setCell(18, 5, new Double(85));
table.setCell(19, 1, "William");
table.setCell(19, 2, "M");
table.setCell(19, 3, new Double(15));
table.setCell(19, 4, new Double(66.5));
table.setCell(19, 5, new Double(112));
%>