summaryrefslogtreecommitdiff
path: root/devel/py-tabular/DESCR
blob: f0439b60aa9509651e5ee9e0bffc39c89e261d81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Tabular data can be easily represented in Python using the language's
native objects. These representations typically do not support
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. 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