<%
// Copy this table definition to a file named SimpleRiskData.jsp
// so it can be included in the RiskMapPlot sample programs
String columnNames[]={"Blood Sugar", "Systolic Blood Pressure"};
DefaultTableModel dataTable = new DefaultTableModel();
Object data[][] = {
{new Double(140), new Double(95)},
{new Double(205), new Double(145)},
{new Double(175), new Double(152)},
{new Double(300), new Double(142)},
{new Double(230), new Double(115)},
{new Double(125), new Double(125)}
};
dataTable.setDataVector(data, columnNames);
%>