SanPen / DataFrame

Java libary to handle tables like the Pandas python library DataFrame

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DataFrame

Java libary to handle tables like the Pandas python library DataFrame

An usage example is:

import com.dataframe.CSV;
import com.dataframe.DataFrame;


public class Main {

    public static void main(String[] args) {

        ui gui = new ui();

        DataFrame data_frame = new CSV("Data.csv", ";").read();
        gui.setModel(data_frame);
    }
}

About

Java libary to handle tables like the Pandas python library DataFrame

License:MIT License


Languages

Language:Java 99.6%Language:HTML 0.4%