Tabular data container and associated convenience routines in Python
Project description
Tabular data can be easily represented in Python using the language’s native objects – e.g. by lists of tuples representing the records of the data set. Though easy to create, these kind of representations typically do not enable important tabular data manipulations, like efficient column selection, matrix mathematics, or spreadsheet-style operations.
Tabular is a package of Python modules for working with tabular data. Its main object is the tabarray class, a data structure for holding and manipulating tabular data. By putting data into a tabarray object, you’ll get a representation of the data that is more flexible and powerful than a native Python representation. More specifically, tabarray provides:
ultra-fast filtering, selection, and numerical analysis methods, using convenient Matlab-style matrix operation syntax
spreadsheet-style operations, including row & column operations, ‘sort’, ‘replace’, ‘aggregate’, ‘pivot’, and ‘join’
flexible load and save methods for a variety of file formats, including delimited text (CSV), binary, and HTML
sophisticated inference algorithms for determining formatting parameters and data types of input files
Note to NumPy Users: The tabarray object is based on the ndarray object from the Numerical Python package (NumPy), and the Tabular package is built to interface well with NumPy in general. In particular, users of NumPy can get many of the benefits of Tabular, e.g. the spreadsheet-style operations, without having replace their usual NumPy objects with tabarrays, since most of the useful functional pieces of Tabular are written to work directly on NumPy ndarrays and record arrays (see relationship to NumPy).
Download
Download the latest release of tabular from the Python Package Index (PyPi): http://pypi.python.org/pypi/tabular/.
Tabular requires Python 2.6 or higher, but will not work with Python 3k (since NumPy itself is not ported to Py3k). Tabular requires NumPy v1.6 or higher. Any earlier version WILL NOT WORK.
Once these dependencies are installed, you can simply go to the Tabular source directory in your terminal and run the command “python setup.py install” (see Installing Python Modules).
You can also clone our github repository: https://github.com/yamins81/tabular. You can report bugs, make suggestions, submit pull requests, and follow an RSS from our github site.
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file tabular-0.1.tar.gz
.
File metadata
- Download URL: tabular-0.1.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 372a1004b2dce3fd811531c04c77ce7e047160f7a246b3de6d510878200d1cc1 |
|
MD5 | 3399403ca409be4ca162f972385693d5 |
|
BLAKE2b-256 | f1c4991f61471be3b2568a55e0c09f07c038f48b06162d08f914a9260b512be2 |