1 44 45 package org.jfree.data.statistics; 46 47 import java.util.List ; 48 49 import org.jfree.data.category.CategoryDataset; 50 51 57 public interface BoxAndWhiskerCategoryDataset extends CategoryDataset { 58 59 67 public Number getMeanValue(int row, int column); 68 69 77 public Number getMeanValue(Comparable rowKey, Comparable columnKey); 78 79 87 public Number getMedianValue(int row, int column); 88 89 97 public Number getMedianValue(Comparable rowKey, Comparable columnKey); 98 99 107 public Number getQ1Value(int row, int column); 108 109 117 public Number getQ1Value(Comparable rowKey, Comparable columnKey); 118 119 127 public Number getQ3Value(int row, int column); 128 129 137 public Number getQ3Value(Comparable rowKey, Comparable columnKey); 138 139 147 public Number getMinRegularValue(int row, int column); 148 149 157 public Number getMinRegularValue(Comparable rowKey, Comparable columnKey); 158 159 167 public Number getMaxRegularValue(int row, int column); 168 169 177 public Number getMaxRegularValue(Comparable rowKey, Comparable columnKey); 178 179 187 public Number getMinOutlier(int row, int column); 188 189 197 public Number getMinOutlier(Comparable rowKey, Comparable columnKey); 198 199 207 public Number getMaxOutlier(int row, int column); 208 209 217 public Number getMaxOutlier(Comparable rowKey, Comparable columnKey); 218 219 228 public List getOutliers(int row, int column); 229 230 239 public List getOutliers(Comparable rowKey, Comparable columnKey); 240 241 } 242 | Popular Tags |