public class DataFrame extends Object
| Modifier and Type | Method and Description |
|---|---|
static DataFrame |
create(int n,
int m)
create an empty DataFrame with the dimensions of n*m
|
static DataFrame |
create(Object[][] objects,
String[] names) |
Object[] |
getColumn(int i) |
String[] |
getNames() |
int |
getNumberOfColumns() |
int |
getNumberOfRows() |
Object |
getObject(int n,
int m) |
Object[][] |
getObjects() |
Object[] |
getRow(int i) |
public static DataFrame create(int n, int m)
n - is the number of columnsm - is the number of rowspublic Object[] getColumn(int i)
public Object[] getRow(int i)
public Object[][] getObjects()
public String[] getNames()
public int getNumberOfColumns()
public int getNumberOfRows()
public Object getObject(int n, int m)
Copyright © 2016. All rights reserved.