Java Code Examples for org.jfree.data.general.DatasetUtilities#iterateDomainBounds()

The following examples show how to use org.jfree.data.general.DatasetUtilities#iterateDomainBounds() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DatasetUtilitiesTests.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Another test for bug 2849731.
 */
public void testBug2849731_2() {
    XYIntervalSeriesCollection d = new XYIntervalSeriesCollection();
    XYIntervalSeries s = new XYIntervalSeries("S1");
    s.add(1.0, Double.NaN, Double.NaN, Double.NaN, 1.5, Double.NaN);
    d.addSeries(s);
    Range r = DatasetUtilities.iterateDomainBounds(d);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(1.0, r.getUpperBound(), EPSILON);

    s.add(1.0, 1.5, Double.NaN, Double.NaN, 1.5, Double.NaN);
    r = DatasetUtilities.iterateDomainBounds(d);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(1.5, r.getUpperBound(), EPSILON);

    s.add(1.0, Double.NaN, 0.5, Double.NaN, 1.5, Double.NaN);
    r = DatasetUtilities.iterateDomainBounds(d);
    assertEquals(0.5, r.getLowerBound(), EPSILON);
    assertEquals(1.5, r.getUpperBound(), EPSILON);
}
 
Example 2
Source File: DatasetUtilitiesTests.java    From astor with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Check that NaN values in the IntervalXYDataset are ignored.
 */
public void testIterateDomainBounds_NaN2() {
    DefaultIntervalXYDataset dataset = new DefaultIntervalXYDataset();
    double[] x1 = new double[] {Double.NaN, 2.0, 3.0};
    double[] x1Start = new double[] {0.9, Double.NaN, 2.9};
    double[] x1End = new double[] {1.1, Double.NaN, 3.1};
    double[] y1 = new double[] {4.0, 5.0, 6.0};
    double[] y1Start = new double[] {1.09, 2.09, 3.09};
    double[] y1End = new double[] {1.11, 2.11, 3.11};
    double[][] data1 = new double[][] {x1, x1Start, x1End, y1, y1Start,
            y1End};
    dataset.addSeries("S1", data1);
    Range r = DatasetUtilities.iterateDomainBounds(dataset, false);
    assertEquals(2.0, r.getLowerBound(), EPSILON);
    assertEquals(3.0, r.getUpperBound(), EPSILON);
    r = DatasetUtilities.iterateDomainBounds(dataset, true);
    assertEquals(0.9, r.getLowerBound(), EPSILON);
    assertEquals(3.1, r.getUpperBound(), EPSILON);
}
 
Example 3
Source File: XYSeriesCollection.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 * 
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
        
}
 
Example 4
Source File: DefaultTableXYDataset.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 5
Source File: DefaultTableXYDataset.java    From opensim-gui with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 * 
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 6
Source File: CategoryTableXYDataset.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 * 
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 7
Source File: XYSeriesCollection.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 * 
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
        
}
 
Example 8
Source File: DefaultTableXYDataset.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 * 
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 9
Source File: DatasetUtilitiesTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Some tests for the iterateDomainBounds() method.
 */
public void testIterateDomainBounds() {
    XYDataset dataset = createXYDataset1();
    Range r = DatasetUtilities.iterateDomainBounds(dataset);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(3.0, r.getUpperBound(), EPSILON);           
}
 
Example 10
Source File: CategoryTableXYDataset.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 11
Source File: DefaultTableXYDataset.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 12
Source File: DatasetUtilitiesTests.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Check that NaN values in the dataset are ignored.
 */
public void testIterateDomainBounds_NaN() {
    DefaultXYDataset dataset = new DefaultXYDataset();
    double[] x = new double[] {1.0, 2.0, Double.NaN, 3.0};
    double[] y = new double[] {9.0, 8.0, 7.0, 6.0};
    dataset.addSeries("S1", new double[][] {x, y});
    Range r = DatasetUtilities.iterateDomainBounds(dataset);
    assertEquals(1.0, r.getLowerBound(), EPSILON);
    assertEquals(3.0, r.getUpperBound(), EPSILON);
}
 
Example 13
Source File: ExtCategoryTableXYDataset.java    From pentaho-reporting with GNU Lesser General Public License v2.1 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval a flag that determines whether or not the x-interval is taken into account.
 * @return The range.
 */
public Range getDomainBounds( final boolean includeInterval ) {
  if ( includeInterval ) {
    return this.intervalDelegate.getDomainBounds( includeInterval );
  } else {
    return DatasetUtilities.iterateDomainBounds( this, includeInterval );
  }
}
 
Example 14
Source File: DefaultTableXYDataset.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 15
Source File: DefaultTableXYDataset.java    From ECG-Viewer with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 16
Source File: CategoryTableXYDataset.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 17
Source File: DefaultTableXYDataset.java    From SIMVA-SoS with Apache License 2.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 18
Source File: DefaultTableXYDataset.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 19
Source File: CategoryTableXYDataset.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}
 
Example 20
Source File: CategoryTableXYDataset.java    From openstock with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the range of the values in this dataset's domain.
 *
 * @param includeInterval  a flag that determines whether or not the
 *                         x-interval is taken into account.
 *
 * @return The range.
 */
@Override
public Range getDomainBounds(boolean includeInterval) {
    if (includeInterval) {
        return this.intervalDelegate.getDomainBounds(includeInterval);
    }
    else {
        return DatasetUtilities.iterateDomainBounds(this, includeInterval);
    }
}