Analytics.DataFrame

Description

Functions to access TERR.

Functions

NameSignature and Synopsis
createFrameObject createFrame(String [] names, Object [] data)
Calls the Terr engine to create data frame
debugOutvoid debugOut(Object frame)
Prints data frame
getColumnObject[] getColumn(Object dataFrame, int columnIndex)
Returns the column specified by the column number from the data frame object.
If the column number specified is incorrect returns null value.
getColumnCountint getColumnCount(Object dataFrame)
Returns the total number of columns present in the passed dataframe object
getColumnTypeString getColumnType(Object dataFrame, int columnNumber)
Returns the column type for the column number specified from the data frame object.
If the column number specified is incorrect returns null value.