<%
  // Copy this table definition to a file named ScoreData.jsp
  // so it can be included in the BarLineChart sample programs

	table.addColumn(1, java.lang.Double.class, null);
	table.setColumnLabel(1, "ActualScore");
	table.addColumn(2, java.lang.Double.class, null);
	table.setColumnLabel(2, "PredictionScore");
	table.addColumn(3, java.lang.Double.class, null);
	table.setColumnLabel(3, "Sample");
	

	table.addRow(1);
	table.addRow(2);
	table.addRow(3);
	table.addRow(4);
	table.addRow(5);
	table.addRow(6);
	

	table.setCell(1, 1, new Double(10));
       	table.setCell(1, 2, new Double(8));	
	table.setCell(1, 3, new Double(1));

	table.setCell(2, 1, new Double(15));
       	table.setCell(2, 2, new Double(12));	
	table.setCell(2, 3, new Double(2));

	table.setCell(3, 1, new Double(20));
       	table.setCell(3, 2, new Double(16));	
	table.setCell(3, 3, new Double(3));
	
	table.setCell(4, 1, new Double(25));
       	table.setCell(4, 2, new Double(22));	
	table.setCell(4, 3, new Double(4));

	table.setCell(5, 1, new Double(30));
       	table.setCell(5, 2, new Double(26));	
	table.setCell(5, 3, new Double(5));

	table.setCell(6, 1, new Double(35));
       	table.setCell(6, 2, new Double(31));	
	table.setCell(6, 3, new Double(6));
%>