Uses of Interface
fr.project.lib.IDataFrame

Packages that use IDataFrame
Package
Description
 
  • Uses of IDataFrame in fr.project.lib

    Classes in fr.project.lib that implement IDataFrame
    Modifier and Type
    Class
    Description
    class 
    A Java implementation of a DataFrame similar to pandas' DataFrame.
    Methods in fr.project.lib that return IDataFrame
    Modifier and Type
    Method
    Description
    DataFrame.get(int... colIndices)
    Gets subset DataFrame containing specified columns (by index)
    DataFrame.get(String... cols)
    Gets subset DataFrame containing specified columns (by name)
    IDataFrame.get(int... columnIndices)
    Gets a subset DataFrame containing only the specified columns by index.
    IDataFrame.get(String... columnNames)
    Gets a subset DataFrame containing only the specified columns.