1 44 45 package org.jfree.data.statistics; 46 47 import org.jfree.data.category.CategoryDataset; 48 49 55 public interface StatisticalCategoryDataset extends CategoryDataset { 56 57 65 public Number getMeanValue(int row, int column); 66 67 75 public Number getMeanValue(Comparable rowKey, Comparable columnKey); 76 77 85 public Number getStdDevValue(int row, int column); 86 87 95 public Number getStdDevValue(Comparable rowKey, Comparable columnKey); 96 97 } 98 99 | Popular Tags |