Package | Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultDataFrame<V>
A data frame with direct integer indexing on the rows and textual indexing on the columns.
|
Modifier and Type | Method and Description |
---|---|
static MutableDataFrame<Integer,String,Object> |
DataFrameFactory.fromCSV(URL url)
Creates a data frame by loading a Comma-Separated Values (CSV) encoded file.
|
static MutableDataFrame<Integer,String,Object> |
DataFrameFactory.fromExcel(URL url)
Creates a data frame by loading an Excel (.xls, .xlsx) file.
|
static MutableDataFrame<Integer,String,Object> |
DataFrameFactory.fromJSON(URL url)
Creates a data frame by loading a JSON encoded file.
|
static <V> MutableDataFrame<Integer,String,V> |
DataFrameFactory.fromRowMajorArray(String[] names,
Class[] classes,
V[][] data)
Creates a data frame using a row-major two dimensional array.
|
static MutableDataFrame<Integer,String,Object> |
DataFrameFactory.fromTSV(URL url)
Creates a data frame by loading a tab-delimited encoded file.
|
Modifier and Type | Class and Description |
---|---|
class |
TableModelDataFrame
Converts a TableModel into a DataFrame.
|
Copyright © 2014 Macrofocus GmbH. All Rights Reserved.