Package | Description |
---|---|
com.macrofocus.molap.aggregates.aggregation |
Provides the necessary classes and interfaces for defining how the data should be aggregated.
|
com.macrofocus.molap.aggregates.cube |
Provides the necessary classes and interfaces for dealing with multidimensional cubes.
|
com.macrofocus.molap.aggregates.cuboid |
Provides the necessary classes and interfaces for dealing with cuboids.
|
com.macrofocus.molap.aggregates.query |
Provides the necessary classes and interfaces for performing queries.
|
com.macrofocus.molap.dataframe |
Provides the necessary classes and interfaces for dealing with indexed table structures.
|
com.macrofocus.molap.dataframe.swing |
Provides the necessary classes and interfaces for interfacing with Swing data models.
|
com.macrofocus.molap.series |
Provides the necessary classes and interfaces for dealing with indexed vector structures.
|
Constructor and Description |
---|
CountAggregation(Series column) |
CountDistinctAggregation(Series column) |
MaxAggregation(Series column) |
MeanAggregation(Series column) |
MinAggregation(Series column) |
StdDevAggregation(Series column) |
StdDevAggregation(Series uncorrectedSumOfSquares,
Series sum,
Series count) |
StdDevAggregation(Series uncorrectedSumOfSquares,
Series sum,
Series count) |
StdDevAggregation(Series uncorrectedSumOfSquares,
Series sum,
Series count) |
SumAggregation(Series column) |
VarianceAggregation(Series column) |
VarianceAggregation(Series column,
Series population) |
VarianceAggregation(Series column,
Series population) |
Constructor and Description |
---|
DistributiveStatistics(Series<R,?> series) |
DistributiveStatistics(Series<R,?> series,
Iterable<R> keys) |
Modifier and Type | Method and Description |
---|---|
Set<Object> |
AbstractCuboid.getDistinct(Group group,
Series column) |
Set<Object> |
Cuboid.getDistinct(Group group,
Series columm) |
DistributiveStatistics |
AbstractCuboid.getDistributiveStatistics(Group group,
Series column) |
DistributiveStatistics |
Cuboid.getDistributiveStatistics(Group group,
Series columm) |
Modifier and Type | Method and Description |
---|---|
Series<Group,Object> |
QueryDataFrame.getColumn(String column) |
Series<String,?> |
QueryDataFrame.getRow(Group row) |
Modifier and Type | Method and Description |
---|---|
DataFrame<String,Group,?> |
QueryDataFrame.append(Series<String,?> series) |
DataFrame |
QueryDataFrame.join(Series series,
String[] columns) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDataFrame.ColumnSeries |
class |
IndexedDataFrame.ColumnSeries<K> |
Modifier and Type | Method and Description |
---|---|
Series<R,V> |
AbstractDataFrame.getColumn(C c) |
Series<R,V> |
ReIndexedDataFrame.getColumn(C column) |
Series<Row,V> |
DataFrame.getColumn(Column column)
Returns a series of all the values of a given column.
|
Series<R,V> |
IndexedDataFrame.getColumn(Object column) |
Series<Integer,V> |
DefaultDataFrame.getColumn(String column) |
Series<String,?> |
DefaultDataFrame.getRow(Integer row) |
Series<Object,?> |
IndexedDataFrame.getRow(Object row) |
Series<C,?> |
FilterDataFrame.getRow(R r) |
Series<C,?> |
ReIndexedDataFrame.getRow(R row) |
Series<C,?> |
SelectionDataFrame.getRow(R r) |
Series<Column,?> |
DataFrame.getRow(Row row)
Returns a series of all the values of a given row.
|
Series<R,V> |
AbstractDataFrame.ColumnSeries.head(int count) |
Series<K,V> |
IndexedDataFrame.ColumnSeries.head(int count) |
<L> Series<L,V> |
AbstractDataFrame.ColumnSeries.reindex(L... keys) |
<L> Series<L,V> |
IndexedDataFrame.ColumnSeries.reindex(L... keys) |
Series<R,V> |
AbstractDataFrame.ColumnSeries.tail(int count) |
Series<K,V> |
IndexedDataFrame.ColumnSeries.tail(int count) |
Modifier and Type | Method and Description |
---|---|
DataFrame<C,R,?> |
FilterDataFrame.append(Series<C,?> series) |
DataFrame<C,R,?> |
ReIndexedDataFrame.append(Series<C,?> series) |
DataFrame<C,R,?> |
SelectionDataFrame.append(Series<C,?> series) |
DataFrame<Column,Row,?> |
DataFrame.append(Series<Column,?> series) |
DataFrame<Object,R,?> |
IndexedDataFrame.append(Series<Object,?> series) |
DataFrame<String,Integer,?> |
DefaultDataFrame.append(Series<String,?> series) |
static <R,V> DataFrame<R,Object,V> |
DataFrameFactory.fromColumnSeries(Series<R,V>... series)
Creates a data frame using a combination of series.
|
DataFrame |
FilterDataFrame.join(Series series,
C[] cs) |
DataFrame |
ReIndexedDataFrame.join(Series series,
C[] columns) |
DataFrame |
SelectionDataFrame.join(Series series,
C[] cs) |
DataFrame |
DataFrame.join(Series series,
Column[] columns) |
DataFrame |
IndexedDataFrame.join(Series series,
Object[] columns) |
DataFrame |
DefaultDataFrame.join(Series series,
String[] columns) |
Constructor and Description |
---|
IndexedDataFrame(Index<R> rowIndex,
Index columnIndex,
Series<R,V>[] series) |
IndexedDataFrame(Series<R,V>... series) |
Modifier and Type | Method and Description |
---|---|
Series<Integer,Object> |
TableModelDataFrame.getColumn(String column) |
Series<String,?> |
TableModelDataFrame.getRow(Integer row) |
Modifier and Type | Method and Description |
---|---|
DataFrame<String,Integer,?> |
TableModelDataFrame.append(Series<String,?> series) |
DataFrame |
TableModelDataFrame.join(Series series,
String[] columns) |
Modifier and Type | Interface and Description |
---|---|
interface |
MutableSeries<K,V> |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSeries<K,V> |
class |
DefaultSeries<V> |
class |
IndexedSeries<K,V> |
class |
ReIndexedSeries<K,V,X> |
Modifier and Type | Method and Description |
---|---|
Series<K,Double> |
AbstractSeries.add(Series<K,V> other) |
Series<K,Double> |
Series.add(Series<K,V> other) |
static <K,V> Series<K,V> |
SeriesFactory.create(Object name,
V[] values,
K[] keys) |
Series<K,Double> |
AbstractSeries.divide(Series<K,V> other) |
Series<K,Double> |
Series.divide(Series<K,V> other) |
Series<Integer,V> |
DefaultSeries.head(int count) |
Series<K,V> |
IndexedSeries.head(int count) |
Series<K,V> |
ReIndexedSeries.head(int count) |
Series<K,V> |
Series.head(int count) |
Series<K,Double> |
AbstractSeries.multiply(Series<K,V> other) |
Series<K,Double> |
Series.multiply(Series<K,V> other) |
Series<K,Double> |
AbstractSeries.pow(Double exponent) |
Series<K,Double> |
Series.pow(Double exponent) |
<K> Series<K,V> |
DefaultSeries.reindex(Index<K> index) |
<L> Series<L,V> |
DefaultSeries.reindex(L... keys) |
<L> Series<L,V> |
IndexedSeries.reindex(L... keys) |
<L> Series<L,V> |
ReIndexedSeries.reindex(L... keys) |
<L> Series<L,V> |
Series.reindex(L... keys) |
Series<K,Double> |
AbstractSeries.subtract(Series<K,V> other) |
Series<K,Double> |
Series.subtract(Series<K,V> other) |
Series<Integer,V> |
DefaultSeries.tail(int count) |
Series<K,V> |
IndexedSeries.tail(int count) |
Series<K,V> |
ReIndexedSeries.tail(int count) |
Series<K,V> |
Series.tail(int count) |
Modifier and Type | Method and Description |
---|---|
Series<K,Double> |
AbstractSeries.add(Series<K,V> other) |
Series<K,Double> |
Series.add(Series<K,V> other) |
Series<K,Double> |
AbstractSeries.divide(Series<K,V> other) |
Series<K,Double> |
Series.divide(Series<K,V> other) |
boolean |
AbstractSeries.identitcal(Series o) |
Series<K,Double> |
AbstractSeries.multiply(Series<K,V> other) |
Series<K,Double> |
Series.multiply(Series<K,V> other) |
Series<K,Double> |
AbstractSeries.subtract(Series<K,V> other) |
Series<K,Double> |
Series.subtract(Series<K,V> other) |
Constructor and Description |
---|
ReIndexedSeries(Series<X,V> series,
ReIndexedSeries.ReIndexRecipe<K> recipe) |
Copyright © 2014 Macrofocus GmbH. All Rights Reserved.