-
Notifications
You must be signed in to change notification settings - Fork 281
Home
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.
Execute the following code snippet on the command to install gota package.
go get -u github.com/go-gota/gota/dataframe
go get -u github.com/go-gota/gota/series
To use gota in your code, use the import
statement like this:
import "github.com/go-gota/gota/dataframe"
import "github.com/go-gota/gota/series"
For more information about the API, make sure to check:
Copyright 2016 Alejandro Sanchez Brotons
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.