public interface RDataTable
Modifier and Type | Method and Description |
---|---|
RData |
asDataFrame(java.lang.String name)
Converts RDataTable data to DeployR-encoded RData data.frame.
|
RData |
asMatrix(java.lang.String name)
Converts RDataTable data to DeployR-encoded RData matrix.
|
RData |
asVector(java.lang.String name)
Converts RDataTable data to DeployR-encoded RData vector.
|
java.lang.Class |
getColumnClass(int c)
Returns the most specific superclass for all
the cell values in the column.
|
int |
getColumnCount()
Returns the number of columns in the table.
|
java.util.List<java.util.List> |
getData()
Returns raw data on the instance of RDataTable.
|
int |
getRowCount()
Returns the number of rows in the table.
|
java.lang.Object |
getValueAt(int row,
int col)
Returns the value for the cell at col and row.
|
void |
setData(java.util.List<java.util.List> data)
Sets raw data on the instance of RDataTable.
|
void |
setValueAt(java.lang.Object value,
int row,
int col)
Sets the value for the cell at col and row.
|
int getRowCount()
int getColumnCount()
java.lang.Object getValueAt(int row, int col)
void setValueAt(java.lang.Object value, int row, int col)
java.lang.Class getColumnClass(int c)
java.util.List<java.util.List> getData()
void setData(java.util.List<java.util.List> data)
RData asDataFrame(java.lang.String name) throws RDataException
RDataException
RData asMatrix(java.lang.String name) throws RDataException
RDataException
RData asVector(java.lang.String name) throws RDataException
RDataException