Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
7 | 9 | 3 | 0.958 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 7 | 324 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
2 | 7 | 341 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
3 | 7 | 358 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
4 | 7 | 375 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
5 | 7 | 392 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
6 | 7 | 409 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
7 | 7 | 425 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
8 | 7 | 443 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
9 | 7 | 460 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java |
| |||||
/** * Returns the mean for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The mean for the specified series and item. */ public Number getMeanValue(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMean(); } return result; } |
| |||||
/** * Returns the median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The median-value for the specified series and item. */ public Number getMedianValue(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMedian(); } return result; } |
| |||||
/** * Returns the Q1 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q1 median-value for the specified series and item. */ public Number getQ1Value(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getQ1(); } return result; } |
| |||||
/** * Returns the Q3 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q3 median-value for the specified series and item. */ public Number getQ3Value(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getQ3(); } return result; } |
| |||||
/** * Returns the min-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The min-value for the specified series and item. */ public Number getMinRegularValue(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMinRegularValue(); } return result; } |
| |||||
/** * Returns the max-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The max-value for the specified series and item. */ public Number getMaxRegularValue(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMaxRegularValue(); } return result; } |
| |||||
/** * Returns the minimum value which is not a farout. * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ public Number getMinOutlier(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMinOutlier(); } return result; } |
| |||||
/** * Returns the maximum value which is not a farout, ie Q3 + (interquartile * range * farout coefficient). * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ public Number getMaxOutlier(int series, int item) { Number result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getMaxOutlier(); } return result; } |
| |||||
/** * Returns an array of outliers for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The array of outliers for the specified series and item. */ public List getOutliers(int series, int item) { List result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats.getOutliers(); } return result; } |
| |||
/** * Returns an array of outliers for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The array of outliers for the specified series and item. */ /** * Returns the maximum value which is not a farout, ie Q3 + (interquartile * range * farout coefficient). * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ /** * Returns the minimum value which is not a farout. * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ /** * Returns the max-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The max-value for the specified series and item. */ /** * Returns the min-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The min-value for the specified series and item. */ /** * Returns the Q3 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q3 median-value for the specified series and item. */ /** * Returns the Q1 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q1 median-value for the specified series and item. */ /** * Returns the median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The median-value for the specified series and item. */ /** * Returns the mean for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The mean for the specified series and item. */ public [[#variable1ab1f380]] [[#variable1ab1f2c0]](int series, int item) { [[#variable1ab1f380]] result = null; BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item); if (stats != null) { result = stats. [[#variable1ab1f240]](); } return result; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1ab1f380]] | Number |
1 | 2 | [[#1ab1f380]] | Number |
1 | 3 | [[#1ab1f380]] | Number |
1 | 4 | [[#1ab1f380]] | Number |
1 | 5 | [[#1ab1f380]] | Number |
1 | 6 | [[#1ab1f380]] | Number |
1 | 7 | [[#1ab1f380]] | Number |
1 | 8 | [[#1ab1f380]] | Number |
1 | 9 | [[#1ab1f380]] | List |
2 | 1 | [[#1ab1f2c0]] | getMeanValue |
2 | 2 | [[#1ab1f2c0]] | getMedianValue |
2 | 3 | [[#1ab1f2c0]] | getQ1Value |
2 | 4 | [[#1ab1f2c0]] | getQ3Value |
2 | 5 | [[#1ab1f2c0]] | getMinRegularValue |
2 | 6 | [[#1ab1f2c0]] | getMaxRegularValue |
2 | 7 | [[#1ab1f2c0]] | getMinOutlier |
2 | 8 | [[#1ab1f2c0]] | getMaxOutlier |
2 | 9 | [[#1ab1f2c0]] | getOutliers |
3 | 1 | [[#1ab1f240]] | getMean |
3 | 2 | [[#1ab1f240]] | getMedian |
3 | 3 | [[#1ab1f240]] | getQ1 |
3 | 4 | [[#1ab1f240]] | getQ3 |
3 | 5 | [[#1ab1f240]] | getMinRegularValue |
3 | 6 | [[#1ab1f240]] | getMaxRegularValue |
3 | 7 | [[#1ab1f240]] | getMinOutlier |
3 | 8 | [[#1ab1f240]] | getMaxOutlier |
3 | 9 | [[#1ab1f240]] | getOutliers |