# README
Package dataframe
Overview
This package implements a dataframe that is inspired by Python's pandas.DataFrame
. A dataframe is a two-dimensional matrix-like data structure in which every column has a single data type and all columns are of equal length. In a dataframe, column names must be unique because they are used to identify columns to then do further computations on.
The core structures Array
(1-D) and Dataframe
(2-D) along with the most basic methods are defined in dataframe.go
. Computations that can be done on those two data structures are implemented in math.go
.
Contributions
Contributions are highly welcome!
License
The code in this repository is MIT licensed.
# Packages
No description provided by the author
# Constants
Package-level constants that determine certain behaviors.