Uses of Class
net.esper.view.stat.BaseStatisticsBean

Packages that use BaseStatisticsBean
net.esper.view.stat Views computing statistical values. 
net.esper.view.stat.olap Views computing OLAP cubes. 
 

Uses of BaseStatisticsBean in net.esper.view.stat
 

Subclasses of BaseStatisticsBean in net.esper.view.stat
 class CorrelationBean
          Bean for calculating the correlation (same to Microsoft Excel CORREL function).
 class RegressionBean
          Bean for calculating the regression slope and y intercept (same to Microsoft Excel LINEST function).
 

Fields in net.esper.view.stat declared as BaseStatisticsBean
protected  BaseStatisticsBean BaseBivariateStatisticsView.statisticsBean
          This bean can be overridden by subclasses providing extra values such as correlation, regression.
 

Methods in net.esper.view.stat that return types with arguments of type BaseStatisticsBean
protected  MultidimCube<BaseStatisticsBean> MultiDimStatsView.getFactCube()
          For unit testing, returns fact cube.
 

Constructors in net.esper.view.stat with parameters of type BaseStatisticsBean
BaseBivariateStatisticsView(StatementServiceContext statementServiceContext, BaseStatisticsBean statisticsBean, String fieldNameX, String fieldNameY)
          Constructor requires the name of the two fields to use in the parent view to compute the statistics.
 

Uses of BaseStatisticsBean in net.esper.view.stat.olap
 

Method parameters in net.esper.view.stat.olap with type arguments of type BaseStatisticsBean
static Pair<Dimension[],Cell[]> CubeDerivedValueHelper.derive(String[] measuresToDerive, MultidimCube<BaseStatisticsBean> cube)
          Derive given statistical measures from the multidim.
 

Constructor parameters in net.esper.view.stat.olap with type arguments of type BaseStatisticsBean
CubeImpl(MultidimCube<BaseStatisticsBean> cube, String[] measuresToDerive)
          Constructor.