toDataFrame

Converts the box plot summary data to a data frame with two columns. The first column holds the name of the statstics and the second column holds the values.


Converts the integer frequency data into a dataframe representation


Converts the histogram bin data into a dataframe representation


fun Array<DoubleArray>.toDataFrame(): AnyFrame

Converts the 2-D array of doubles to a data frame. The column names are col1, col2, col3, etc. The 2D array must be rectangular


fun Map<String, DoubleArray>.toDataFrame(): AnyFrame

Converts the data stored in each array to columns within a DataFrame, with the column names as the key from the map and the columns holding the data. Each array must have the same size.