package
0.0.0-20190119231906-85335403684f
Repository: https://github.com/danielschuette/bioinformatics.git
Documentation: pkg.go.dev

# README

Package dataframe

GoDoc

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

# Functions

NewArray returns a new Array.
NewDataframe returns a new `Dataframe'.

# Constants

Package-level constants that determine certain behaviors.

# Structs

An Array holds 1-D data of a single type for either computations or to add them to a `Dataframe'.
A Dataframe holds 2-D data in a column-based fashion.