Uses of Class
edu.ucla.stat.SOCR.distributions.IntervalData

Packages that use IntervalData
edu.ucla.stat.SOCR.distributions   
edu.ucla.stat.SOCR.modeler.gui   
edu.ucla.stat.SOCR.util   
 

Uses of IntervalData in edu.ucla.stat.SOCR.distributions
 

Methods in edu.ucla.stat.SOCR.distributions that return IntervalData
 IntervalData RandomVariable.getIntervalData()
          Get the data distribution
 

Uses of IntervalData in edu.ucla.stat.SOCR.modeler.gui
 

Fields in edu.ucla.stat.SOCR.modeler.gui declared as IntervalData
protected  IntervalData ModelerHistogramGraph.data
           
 

Methods in edu.ucla.stat.SOCR.modeler.gui that return IntervalData
 IntervalData ModelerHistogramGraph.getIntervalData()
          This method returns the data set.
 

Methods in edu.ucla.stat.SOCR.modeler.gui with parameters of type IntervalData
 void ModelerHistogramGraph.setIntervalData(IntervalData d)
          This method assigns the data and sets up graph paramters
 

Constructors in edu.ucla.stat.SOCR.modeler.gui with parameters of type IntervalData
ModelerHistogramGraph(IntervalData d, int t)
           
ModelerHistogramGraph(IntervalData d, int t, int modelType)
           
 

Uses of IntervalData in edu.ucla.stat.SOCR.util
 

Fields in edu.ucla.stat.SOCR.util declared as IntervalData
protected  IntervalData varHistogram.data
           
protected  IntervalData NormalCurve.intervalData
           
 

Methods in edu.ucla.stat.SOCR.util that return IntervalData
 IntervalData varHistogram.getIntervalData()
          This method returns the data set.
 IntervalData Histogram.getIntervalData()
          This method returns the data set.
 IntervalData DataGraph.getIntervalData()
          This method returns the data set.
 IntervalData UserScatterPlot.getXData()
          This method returns the x data
 IntervalData UserScatterPlot.getYData()
          This method returns the y data
 

Methods in edu.ucla.stat.SOCR.util with parameters of type IntervalData
 void ErrorGraph.setData(IntervalData d)
          This method sets the data set.
 void DataTable.setData(IntervalData d)
          This method sets the data set
 void varHistogram.setIntervalData(IntervalData d)
          This method assigns the data and sets up graph paramters
 void Histogram.setIntervalData(IntervalData d)
          This method assigns the data and sets up graph paramters
 void DataGraph.setIntervalData(IntervalData d)
          This method assigns the data and sets up graph paramters
 

Constructors in edu.ucla.stat.SOCR.util with parameters of type IntervalData
DataGraph(IntervalData d, int t)
          This general constructor creates a new data graph with a specified data set and axis type.
DataTable(IntervalData d)
          Constructor
DataTable(IntervalData d, int t)
          Constructor
ErrorGraph(IntervalData d, int t)
          This general constructor creates a new error graph of a specified type and with a specified data set.
Histogram(IntervalData d, int t)
          This general constructor creates a new data graph with a specified data set and axis type.
varHistogram(IntervalData d, int t)
           
varHistogram(IntervalData d, int t, int modelType)