Skip to content
Phage Ky edited this page Apr 16, 2019 · 10 revisions

GOTA : Series and Dataframe


Overview

Gota is an implementation of DataFrames and Series written purely in the Go programming language. Dataframe is a data structure that serve as the foundation for analytics today. The structure, which can be found in popular analytic tools such as R, Python (under the pandas package) and Microsoft Excel, is used to store and manipulate data. The Gota dataframe is modeled from these tools. The API is still in flux so use at your own risk.

Installation

Execute the following code snippet on the command to install gota package.

go get -u github.com/kniren/gota/dataframe
go get -u github.com/kniren/gota/series

To use gota in your code, use the import statement like this:

import "github.com/kniren/gota/dataframe"
import "github.com/go-gota/gota/series"
  • Overview
  • Dataframe
Clone this wiki locally