public ICellsDataTablegetInstance(int[] vals, java.lang.String[] columnNames)
Creates ICellsDataTable from given sequence of int values.
Parameters:
vals - int values to build table
columnNames - Column names of the table.
Its length can only be either 1(build table by the int values vertically)
or length of the int values(build table by the int values horizontally)
Returns:
Instance of ICellsDataTable
getInstance
public ICellsDataTablegetInstance(int[] vals, boolean vertial)
Creates ICellsDataTable from given sequence of int values.
Parameters:
vals - int values to build table
vertial - whether build table by the int values vertiacally(true) or horizontally(false)
Returns:
Instance of ICellsDataTable
getInstance
public ICellsDataTablegetInstance(double[] vals, java.lang.String[] columnNames)
Creates ICellsDataTable from given sequence of double values.
Parameters:
vals - double values to build table
columnNames - Column names of the table.
Its length can only be either 1(build table by the double values vertically)
or length of the double values(build table by the double values horizontally)
Returns:
Instance of ICellsDataTable
getInstance
public ICellsDataTablegetInstance(double[] vals, boolean vertial)
Creates ICellsDataTable from given sequence of double values.
Parameters:
vals - double values to build table
vertial - whether build table by the double values vertiacally(true) or horizontally(false)
Returns:
Instance of ICellsDataTable
getInstance
public ICellsDataTablegetInstance(java.lang.Object[] vals, java.lang.String[] columnNames)
Creates ICellsDataTable from given sequence of objects.
Parameters:
vals - objects to build table
columnNames - Column names of the table.
Its length can only be either 1(build table by the objects vertically)
or length of the objects(build table by the objects horizontally)
Returns:
Instance of ICellsDataTable
getInstance
public ICellsDataTablegetInstance(java.lang.Object[] vals, boolean vertial)
Creates ICellsDataTable from given sequence of objects.
Parameters:
vals - objects to build table
vertial - whether build table by the objects vertiacally(true) or horizontally(false)