Skip to content
Max Gordon edited this page Sep 1, 2016 · 2 revisions

Licence MIT Build Status

Dataframe

Dataframe is a Torch7 class to load and manipulate tabular data (e.g. Kaggle-style CSVs) inspired from R's and pandas' data frames.

As of release 1.5 it fully supports the torchnet data structure. It also has custom iterators to convenient integration with torchnet's engines, see the mnist example. As of release 1.6 it has changed the internal storage to tensor

For a quick overview of the package, check out the README

Requirements

Installation

The simplest way to install the package is via luarocks:

luarocks install torch-dataframe

If you want the development version you can add the scm-1 version:

luarocks install torch-dataframe scm-1

You can also clone this repository and use make:

git clone https://github.com/AlexMili/torch-dataframe
cd torch-dataframe
luarocks make rocks/torch-dataframe-scm-1.rockspec
Clone this wiki locally