Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 8.2% on proxy.golang.org

proxy.golang.org : github.com/shuLhan/tabula

Package tabula is a Go library for working with rows, columns, or matrix (table), or in another terms working with data set. Go's slice gave a flexible way to manage sequence of data in one type, but what if you want to manage a sequence of value but with different type of data? Or manage a bunch of values like a table? You can use this library to manage sequence of value with different type and manage data in two dimensional tuple. ## Terminology Here are some terminologies that we used in developing this library, which may help reader understand the internal and API. Record is a single cell in row or column, or the smallest building block of dataset. Row is a horizontal representation of records in dataset. Column is a vertical representation of records in dataset. Each column has a unique name and has the same type data. Dataset is a collection of rows and columns. Given those definitions we can draw the representation of rows, columns, or matrix: ## Record Type There are only three valid type in record: int64, float64, and string. ## Dataset Mode Tabula has three mode for dataset: rows, columns, or matrix. For example, given a table of data, "rows" mode is where each line saved in its own slice, resulting in Rows: "columns" mode is where each line saved by columns, resulting in Columns: Unlike rows mode, each column contain metadata including column name, type, flag, and value space (all possible value that _may_ contain in column value). "matrix" mode is where each record saved both in row and column. Matrix mode consume more memory but give a flexible way to manage records.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/shu%21lhan/tabula
Keywords: datamining, dataset, go, golang, matrix, slice
License: BSD-3-Clause
Latest release: about 8 years ago
First release: about 8 years ago
Namespace: github.com/shuLhan
Stars: 11 on GitHub
Forks: 0 on GitHub
See more repository details: repos.ecosyste.ms
Last synced: 23 days ago

    Loading...
    Readme
    Loading...