Core
tablite.core
Attributes
tablite.core.log = logging.getLogger(__name__)
module-attribute
Classes
tablite.core.Table(columns=None, headers=None, rows=None, _path=None)
Bases: BaseTable
creates Table
PARAMETER | DESCRIPTION |
---|---|
EITHER |
columns (dict, optional): dict with column names as keys, values as lists. Example: t = Table(columns={"a": [1, 2], "b": [3, 4]})
|
Source code in tablite/core.py
36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
Attributes
tablite.core.Table.path = _path
instance-attribute
tablite.core.Table.columns = {}
instance-attribute
tablite.core.Table.rows
property
enables row based iteration in python types.
Example:
for row in Table.rows:
print(row)
Yields: tuple: values is same order as columns.
Functions
tablite.core.Table.__str__()
Source code in tablite/base.py
1128 1129 |
|
tablite.core.Table.__repr__()
Source code in tablite/base.py
1131 1132 |
|
tablite.core.Table.nbytes()
finds the total bytes of the table on disk
RETURNS | DESCRIPTION |
---|---|
tuple
|
int: real bytes used on disk int: total bytes used if flattened |
Source code in tablite/base.py
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 |
|
tablite.core.Table.items()
returns table as dict
RETURNS | DESCRIPTION |
---|---|
dict
|
Table as dict |
Source code in tablite/base.py
1151 1152 1153 1154 1155 1156 1157 1158 1159 |
|
tablite.core.Table.__delitem__(key)
Examples:
>>> del table['a'] # removes column 'a'
>>> del table[-3:] # removes last 3 rows from all columns.
Source code in tablite/base.py
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 |
|
tablite.core.Table.__setitem__(key, value)
table behaves like a dict. Args: key (str or hashable): column name value (iterable): list, tuple or nd.array with values.
As Table now accepts the keyword columns
as a dict:
>>> t = Table(columns={'b':[4,5,6], 'c':[7,8,9]})
and the header/data combinations:
>>> t = Table(header=['b','c'], data=[[4,5,6],[7,8,9]])
This has the side-benefit that tuples now can be used as headers.
Source code in tablite/base.py
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 |
|
tablite.core.Table.__getitem__(keys)
Enables selection of columns and rows
PARAMETER | DESCRIPTION |
---|---|
keys |
TYPE:
|
Examples |
|
>>> |
10] selects first 10 rows from all columns
TYPE:
|
>>> |
20:3] selects column 'b' and 'c' and 'a' twice for a slice.
TYPE:
|
Raises: KeyError: if key is not found. TypeError: if key is not a string, integer or slice.
RETURNS | DESCRIPTION |
---|---|
Table
|
returns columns in same order as selection. |
Source code in tablite/base.py
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 |
|
tablite.core.Table.__len__()
Source code in tablite/base.py
1289 1290 1291 1292 |
|
tablite.core.Table.__eq__(other) -> bool
Determines if two tables have identical content.
PARAMETER | DESCRIPTION |
---|---|
other |
table for comparison
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if tables are identical.
TYPE:
|
Source code in tablite/base.py
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 |
|
tablite.core.Table.clear()
clears the table. Like dict().clear()
Source code in tablite/base.py
1346 1347 1348 |
|
tablite.core.Table.save(path, compression_method=zipfile.ZIP_DEFLATED, compression_level=1)
saves table to compressed tpz file.
PARAMETER | DESCRIPTION |
---|---|
path |
file destination.
TYPE:
|
compression_method |
See zipfile compression methods. Defaults to ZIP_DEFLATED.
DEFAULT:
|
compression_level |
See zipfile compression levels. Defaults to 1.
DEFAULT:
|
The file format is as follows: .tpz is a gzip archive with table metadata captured as table.yml and the necessary set of pages saved as .npy files.
The zip contains table.yml which provides an overview of the data:
--------------------------------------
%YAML 1.2 yaml version
columns: start of columns section.
name: “列 1” name of column 1.
pages: [p1b1, p1b2] list of pages in column 1.
name: “列 2” name of column 2
pages: [p2b1, p2b2] list of pages in column 2.
----------------------------------------
Source code in tablite/base.py
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 |
|
tablite.core.Table.load(path, tqdm=_tqdm)
classmethod
loads a table from .tpz file. See also Table.save for details on the file format.
PARAMETER | DESCRIPTION |
---|---|
path |
source file
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table
|
table in read-only mode. |
Source code in tablite/base.py
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 |
|
tablite.core.Table.copy()
Source code in tablite/base.py
1455 1456 1457 1458 1459 1460 1461 1462 |
|
tablite.core.Table.__imul__(other)
Repeats instance of table N times.
Like list: t = t * N
PARAMETER | DESCRIPTION |
---|---|
other |
multiplier
TYPE:
|
Source code in tablite/base.py
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 |
|
tablite.core.Table.__mul__(other)
Repeat table N times.
Like list: new = old * N
PARAMETER | DESCRIPTION |
---|---|
other |
multiplier
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table |
Source code in tablite/base.py
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 |
|
tablite.core.Table.__iadd__(other)
Concatenates tables with same column names.
Like list: table_1 += table_2
RAISES | DESCRIPTION |
---|---|
ValueError
|
If column names don't match. |
RETURNS | DESCRIPTION |
---|---|
None
|
self is updated. |
Source code in tablite/base.py
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 |
|
tablite.core.Table.__add__(other)
Concatenates tables with same column names.
Like list: table_3 = table_1 + table_2
RAISES | DESCRIPTION |
---|---|
ValueError
|
If column names don't match. |
RETURNS | DESCRIPTION |
---|---|
Table |
Source code in tablite/base.py
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 |
|
tablite.core.Table.add_rows(*args, **kwargs)
its more efficient to add many rows at once.
if both args and kwargs, then args are added first, followed by kwargs.
supported cases:
>>> t = Table()
>>> t.add_columns('row','A','B','C')
>>> t.add_rows(1, 1, 2, 3) # (1) individual values as args
>>> t.add_rows([2, 1, 2, 3]) # (2) list of values as args
>>> t.add_rows((3, 1, 2, 3)) # (3) tuple of values as args
>>> t.add_rows(*(4, 1, 2, 3)) # (4) unpacked tuple becomes arg like (1)
>>> t.add_rows(row=5, A=1, B=2, C=3) # (5) kwargs
>>> t.add_rows(**{'row': 6, 'A': 1, 'B': 2, 'C': 3}) # (6) dict / json interpreted a kwargs
>>> t.add_rows((7, 1, 2, 3), (8, 4, 5, 6)) # (7) two (or more) tuples as args
>>> t.add_rows([9, 1, 2, 3], [10, 4, 5, 6]) # (8) two or more lists as rgs
>>> t.add_rows(
{'row': 11, 'A': 1, 'B': 2, 'C': 3},
{'row': 12, 'A': 4, 'B': 5, 'C': 6}
) # (9) two (or more) dicts as args - roughly comma sep'd json.
>>> t.add_rows( *[
{'row': 13, 'A': 1, 'B': 2, 'C': 3},
{'row': 14, 'A': 1, 'B': 2, 'C': 3}
]) # (10) list of dicts as args
>>> t.add_rows(row=[15,16], A=[1,1], B=[2,2], C=[3,3]) # (11) kwargs with lists as values
Source code in tablite/base.py
1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 |
|
tablite.core.Table.add_columns(*names)
Adds column names to table.
Source code in tablite/base.py
1618 1619 1620 1621 |
|
tablite.core.Table.add_column(name, data=None)
verbose alias for table[name] = data, that checks if name already exists
PARAMETER | DESCRIPTION |
---|---|
name |
column name
TYPE:
|
data |
values. Defaults to None.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
TypeError
|
name isn't string |
ValueError
|
name already exists |
Source code in tablite/base.py
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 |
|
tablite.core.Table.stack(other)
returns the joint stack of tables with overlapping column names. Example:
| Table A| + | Table B| = | Table AB |
| A| B| C| | A| B| D| | A| B| C| -|
| A| B| -| D|
Source code in tablite/base.py
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 |
|
tablite.core.Table.types()
returns nested dict of data types in the form:
{column name: {python type class: number of instances }, ... }
example:
>>> t.types()
{
'A': {<class 'str'>: 7},
'B': {<class 'int'>: 7}
}
Source code in tablite/base.py
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 |
|
tablite.core.Table.display_dict(slice_=None, blanks=None, dtype=False)
helper for creating dict for display.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
python slice. Defaults to None.
TYPE:
|
blanks |
fill value for
TYPE:
|
dtype |
Adds datatype to each column. Defaults to False.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
TypeError
|
slice_ must be None or slice. |
RETURNS | DESCRIPTION |
---|---|
dict
|
from Table. |
Source code in tablite/base.py
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 |
|
tablite.core.Table.to_ascii(slice_=None, blanks=None, dtype=False)
returns ascii view of table as string.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
slice to determine table snippet.
TYPE:
|
blanks |
value for whitespace. Defaults to None.
TYPE:
|
dtype |
adds subheader with datatype for column. Defaults to False.
TYPE:
|
Source code in tablite/base.py
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 |
|
tablite.core.Table.show(slice_=None, blanks=None, dtype=False)
prints ascii view of table.
PARAMETER | DESCRIPTION |
---|---|
slice_ |
slice to determine table snippet.
TYPE:
|
blanks |
value for whitespace. Defaults to None.
TYPE:
|
dtype |
adds subheader with datatype for column. Defaults to False.
TYPE:
|
Source code in tablite/base.py
1822 1823 1824 1825 1826 1827 1828 1829 1830 |
|
tablite.core.Table.to_dict(columns=None, slice_=None)
columns: list of column names. Default is None == all columns. slice_: slice. Default is None == all rows.
returns: dict with columns as keys and lists of values.
Example:
>>> t.show()
+===+===+===+
| # | a | b |
|row|int|int|
+---+---+---+
| 0 | 1| 3|
| 1 | 2| 4|
+===+===+===+
>>> t.to_dict()
{'a':[1,2], 'b':[3,4]}
Source code in tablite/base.py
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 |
|
tablite.core.Table.as_json_serializable(row_count='row id', start_on=1, columns=None, slice_=None)
provides a JSON compatible format of the table.
PARAMETER | DESCRIPTION |
---|---|
row_count |
Label for row counts. Defaults to "row id".
TYPE:
|
start_on |
row counts starts by default on 1.
TYPE:
|
columns |
Column names. Defaults to None which returns all columns.
TYPE:
|
slice_ |
selector. Defaults to None which returns [:]
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
JSON serializable dict: All python datatypes have been converted to JSON compliant data. |
Source code in tablite/base.py
1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 |
|
tablite.core.Table.index(*args)
param: *args: column names returns multikey index on the columns as d[(key tuple, )] = {index1, index2, ...}
Examples:
>>> table6 = Table()
>>> table6['A'] = ['Alice', 'Bob', 'Bob', 'Ben', 'Charlie', 'Ben','Albert']
>>> table6['B'] = ['Alison', 'Marley', 'Dylan', 'Affleck', 'Hepburn', 'Barnes', 'Einstein']
>>> table6.index('A') # single key.
{('Alice',): [0],
('Bob',): [1, 2],
('Ben',): [3, 5],
('Charlie',): [4],
('Albert',): [6]})
>>> table6.index('A', 'B') # multiple keys.
{('Alice', 'Alison'): [0],
('Bob', 'Marley'): [1],
('Bob', 'Dylan'): [2],
('Ben', 'Affleck'): [3],
('Charlie', 'Hepburn'): [4],
('Ben', 'Barnes'): [5],
('Albert', 'Einstein'): [6]})
Source code in tablite/base.py
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 |
|
tablite.core.Table.unique_index(*args, tqdm=_tqdm)
generates the index of unique rows given a list of column names
PARAMETER | DESCRIPTION |
---|---|
*args |
columns names
TYPE:
|
tqdm |
Defaults to _tqdm.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
np.array(int64): indices of unique records. |
Source code in tablite/base.py
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 |
|
tablite.core.Table.from_file(path, columns=None, first_row_has_headers=True, header_row_index=0, encoding=None, start=0, limit=sys.maxsize, sheet=None, guess_datatypes=True, newline='\n', text_qualifier=None, delimiter=None, strip_leading_and_tailing_whitespace=True, text_escape_openings='', text_escape_closures='', skip_empty: ValidSkipEmpty = 'NONE', tqdm=_tqdm) -> Table
classmethod
reads path and imports 1 or more tables
REQUIRED
--------
path: pathlib.Path or str
selection of filereader uses path.suffix.
See `filereaders`.
OPTIONAL
--------
columns:
None: (default) All columns will be imported.
List: only column names from list will be imported (if present in file)
e.g. ['A', 'B', 'C', 'D']
datatype is detected using Datatypes.guess(...)
You can try it out with:
>> from tablite.datatypes import DataTypes
>> DataTypes.guess(['001','100'])
[1,100]
if the format cannot be achieved the read type is kept.
Excess column names are ignored.
HINT: To get the head of file use:
>>> from tablite.tools import head
>>> head = head(path)
first_row_has_headers: boolean
True: (default) first row is used as column names.
False: integers are used as column names.
encoding: str. Defaults to None (autodetect using n bytes).
n is declared in filereader_utils as ENCODING_GUESS_BYTES
start: the first line to be read (default: 0)
limit: the number of lines to be read from start (default sys.maxint ~ 2**63)
OPTIONAL FOR EXCEL AND ODS READERS
----------------------------------
sheet: sheet name to import (applicable to excel- and ods-reader only)
e.g. 'sheet_1'
sheets not found excess names are ignored.
OPTIONAL FOR TEXT READERS
-------------------------
guess_datatype: bool
True: (default) datatypes are guessed using DataTypes.guess(...)
False: all data is imported as strings.
newline: newline character (applicable to text_reader only)
str: '
' (default) or ' '
text_qualifier: character (applicable to text_reader only)
None: No text qualifier is used.
str: " or '
delimiter: character (applicable to text_reader only)
None: file suffix is used to determine field delimiter:
.txt: "|"
.csv: ",",
.ssv: ";"
.tsv: " " (tab)
strip_leading_and_tailing_whitespace: bool:
True: default
text_escape_openings: (applicable to text_reader only)
None: default
str: list of characters such as ([{
text_escape_closures: (applicable to text_reader only)
None: default
str: list of characters such as }])
Source code in tablite/core.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
tablite.core.Table.from_pandas(df)
classmethod
Creates Table using pd.to_dict('list')
similar to:
>>> import pandas as pd
>>> df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6]})
>>> df
a b
0 1 4
1 2 5
2 3 6
>>> df.to_dict('list')
{'a': [1, 2, 3], 'b': [4, 5, 6]}
>>> t = Table.from_dict(df.to_dict('list))
>>> t.show()
+===+===+===+
| # | a | b |
|row|int|int|
+---+---+---+
| 0 | 1| 4|
| 1 | 2| 5|
| 2 | 3| 6|
+===+===+===+
Source code in tablite/core.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
tablite.core.Table.from_hdf5(path)
classmethod
imports an exported hdf5 table.
Source code in tablite/core.py
250 251 252 253 254 255 |
|
tablite.core.Table.from_json(jsn)
classmethod
Imports table exported using .to_json
Source code in tablite/core.py
257 258 259 260 261 262 |
|
tablite.core.Table.to_hdf5(path)
creates a copy of the table as hdf5
Source code in tablite/core.py
264 265 266 267 268 |
|
tablite.core.Table.to_pandas()
returns pandas.DataFrame
Source code in tablite/core.py
270 271 272 273 274 |
|
tablite.core.Table.to_sql(name)
generates ANSI-92 compliant SQL.
Source code in tablite/core.py
276 277 278 279 280 |
|
tablite.core.Table.to_json()
returns JSON
Source code in tablite/core.py
282 283 284 285 286 |
|
tablite.core.Table.to_xlsx(path)
exports table to path
Source code in tablite/core.py
288 289 290 291 292 293 |
|
tablite.core.Table.to_ods(path)
exports table to path
Source code in tablite/core.py
295 296 297 298 299 300 |
|
tablite.core.Table.to_csv(path)
exports table to path
Source code in tablite/core.py
302 303 304 305 306 307 |
|
tablite.core.Table.to_tsv(path)
exports table to path
Source code in tablite/core.py
309 310 311 312 313 314 |
|
tablite.core.Table.to_text(path)
exports table to path
Source code in tablite/core.py
316 317 318 319 320 321 |
|
tablite.core.Table.to_html(path)
exports table to path
Source code in tablite/core.py
323 324 325 326 327 328 |
|
tablite.core.Table.expression(expression)
filters based on an expression, such as:
"all((A==B, C!=4, 200<D))"
which is interpreted using python's compiler to:
def _f(A,B,C,D):
return all((A==B, C!=4, 200<D))
Source code in tablite/core.py
330 331 332 333 334 335 336 337 338 339 340 341 |
|
tablite.core.Table.filter(expressions, filter_type='all', tqdm=_tqdm)
enables filtering across columns for multiple criteria.
expressions:
str: Expression that can be compiled and executed row by row.
exampLe: "all((A==B and C!=4 and 200<D))"
list of dicts: (example):
L = [
{'column1':'A', 'criteria': "==", 'column2': 'B'},
{'column1':'C', 'criteria': "!=", "value2": '4'},
{'value1': 200, 'criteria': "<", column2: 'D' }
]
accepted dictionary keys: 'column1', 'column2', 'criteria', 'value1', 'value2'
filter_type: 'all' or 'any'
Source code in tablite/core.py
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 |
|
tablite.core.Table.sort_index(sort_mode='excel', tqdm=_tqdm, pbar=None, **kwargs)
helper for methods sort
and is_sorted
param: sort_mode: str: "alphanumeric", "unix", or, "excel" (default) param: **kwargs: sort criteria. See Table.sort()
Source code in tablite/core.py
366 367 368 369 370 371 372 373 |
|
tablite.core.Table.reindex(index)
index: list of integers that declare sort order.
Examples:
Table: ['a','b','c','d','e','f','g','h']
index: [0,2,4,6]
result: ['b','d','f','h']
Table: ['a','b','c','d','e','f','g','h']
index: [0,2,4,6,1,3,5,7]
result: ['a','c','e','g','b','d','f','h']
Source code in tablite/core.py
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
|
tablite.core.Table.drop_duplicates(*args)
removes duplicate rows based on column names
args: (optional) column_names if no args, all columns are used.
Source code in tablite/core.py
394 395 396 397 398 399 400 401 402 403 404 |
|
tablite.core.Table.sort(mapping, sort_mode='excel', tqdm=_tqdm, pbar: _tqdm = None)
Perform multi-pass sorting with precedence given order of column names.
PARAMETER | DESCRIPTION |
---|---|
mapping |
keys as columns, values as boolean for 'reverse'
TYPE:
|
sort_mode |
str: "alphanumeric", "unix", or, "excel"
DEFAULT:
|
RETURNS | DESCRIPTION |
---|---|
None
|
Table.sort is sorted inplace |
Examples: Table.sort(mappinp={A':False}) means sort by 'A' in ascending order. Table.sort(mapping={'A':True, 'B':False}) means sort 'A' in descending order, then (2nd priority) sort B in ascending order.
Source code in tablite/core.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
|
tablite.core.Table.sorted(mapping, sort_mode='excel', tqdm=_tqdm, pbar: _tqdm = None)
See sort. Sorted returns a new table in contrast to "sort", which is in-place.
RETURNS | DESCRIPTION |
---|---|
Table. |
Source code in tablite/core.py
425 426 427 428 429 430 431 432 |
|
tablite.core.Table.is_sorted(mapping, sort_mode='excel')
Performs multi-pass sorting check with precedence given order of column names. **kwargs: optional: sort criteria. See Table.sort() :return bool
Source code in tablite/core.py
434 435 436 437 438 439 |
|
tablite.core.Table.any(**kwargs)
returns Table for rows where ANY kwargs match :param kwargs: dictionary with headers and values / boolean callable
Source code in tablite/core.py
441 442 443 444 445 446 |
|
tablite.core.Table.all(**kwargs)
returns Table for rows where ALL kwargs match :param kwargs: dictionary with headers and values / boolean callable
Examples:
t = Table()
t['a'] = [1,2,3,4]
t['b'] = [10,20,30,40]
def f(x):
return x == 4
def g(x):
return x < 20
t2 = t.any( **{"a":f, "b":g})
assert [r for r in t2.rows] == [[1, 10], [4, 40]]
t2 = t.any(a=f,b=g)
assert [r for r in t2.rows] == [[1, 10], [4, 40]]
def h(x):
return x>=2
def i(x):
return x<=30
t2 = t.all(a=h,b=i)
assert [r for r in t2.rows] == [[2,20], [3, 30]]
Source code in tablite/core.py
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
|
tablite.core.Table.drop(*args)
removes all rows where args are present.
Exmaple:
t = Table() t['A'] = [1,2,3,None] t['B'] = [None,2,3,4] t2 = t.drop(None) t2['A'][:], t2['B'][:] ([2,3], [2,3])
Source code in tablite/core.py
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
|
tablite.core.Table.replace(mapping, columns=None, tqdm=_tqdm, pbar=None)
replaces all mapped keys with values from named columns
PARAMETER | DESCRIPTION |
---|---|
mapping |
keys are targets for replacement, values are replacements.
TYPE:
|
columns |
target columns. Defaults to None (all columns)
TYPE:
|
RAISES | DESCRIPTION |
---|---|
ValueError
|
description |
Source code in tablite/core.py
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
|
tablite.core.Table.groupby(keys, functions, tqdm=_tqdm, pbar=None)
keys: column names for grouping. functions: [optional] list of column names and group functions (See GroupyBy class) returns: table
Example:
t = Table()
t.add_column('A', data=[1, 1, 2, 2, 3, 3] * 2)
t.add_column('B', data=[1, 2, 3, 4, 5, 6] * 2)
t.add_column('C', data=[6, 5, 4, 3, 2, 1] * 2)
t.show()
+=====+=====+=====+
| A | B | C |
| int | int | int |
+-----+-----+-----+
| 1| 1| 6|
| 1| 2| 5|
| 2| 3| 4|
| 2| 4| 3|
| 3| 5| 2|
| 3| 6| 1|
| 1| 1| 6|
| 1| 2| 5|
| 2| 3| 4|
| 2| 4| 3|
| 3| 5| 2|
| 3| 6| 1|
+=====+=====+=====+
g = t.groupby(keys=['A', 'C'], functions=[('B', gb.sum)])
g.show()
+===+===+===+======+
| # | A | C |Sum(B)|
|row|int|int| int |
+---+---+---+------+
|0 | 1| 6| 2|
|1 | 1| 5| 4|
|2 | 2| 4| 6|
|3 | 2| 3| 8|
|4 | 3| 2| 10|
|5 | 3| 1| 12|
+===+===+===+======+
Cheat sheet:
list of unique values
>>> g1 = t.groupby(keys=['A'], functions=[])
>>> g1['A'][:]
[1,2,3]
alternatively:
t['A'].unique() [1,2,3]
list of unique values, grouped by longest combination.
>>> g2 = t.groupby(keys=['A', 'B'], functions=[])
>>> g2['A'][:], g2['B'][:]
([1,1,2,2,3,3], [1,2,3,4,5,6])
alternatively:
>>> list(zip(*t.index('A', 'B').keys()))
[(1,1,2,2,3,3) (1,2,3,4,5,6)]
A key (unique values) and count hereof.
>>> g3 = t.groupby(keys=['A'], functions=[('A', gb.count)])
>>> g3['A'][:], g3['Count(A)'][:]
([1,2,3], [4,4,4])
alternatively:
>>> t['A'].histogram()
([1,2,3], [4,4,4])
for more exmaples see: https://github.com/root-11/tablite/blob/master/tests/test_groupby.py
Source code in tablite/core.py
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 |
|
tablite.core.Table.pivot(rows, columns, functions, values_as_rows=True, tqdm=_tqdm, pbar=None)
param: rows: column names to keep as rows param: columns: column names to keep as columns param: functions: aggregation functions from the Groupby class as
example:
t.show()
+=====+=====+=====+
| A | B | C |
| int | int | int |
+-----+-----+-----+
| 1| 1| 6|
| 1| 2| 5|
| 2| 3| 4|
| 2| 4| 3|
| 3| 5| 2|
| 3| 6| 1|
| 1| 1| 6|
| 1| 2| 5|
| 2| 3| 4|
| 2| 4| 3|
| 3| 5| 2|
| 3| 6| 1|
+=====+=====+=====+
t2 = t.pivot(rows=['C'], columns=['A'], functions=[('B', gb.sum)])
t2.show()
+===+===+========+=====+=====+=====+
| # | C |function|(A=1)|(A=2)|(A=3)|
|row|int| str |mixed|mixed|mixed|
+---+---+--------+-----+-----+-----+
|0 | 6|Sum(B) | 2|None |None |
|1 | 5|Sum(B) | 4|None |None |
|2 | 4|Sum(B) |None | 6|None |
|3 | 3|Sum(B) |None | 8|None |
|4 | 2|Sum(B) |None |None | 10|
|5 | 1|Sum(B) |None |None | 12|
+===+===+========+=====+=====+=====+
Source code in tablite/core.py
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
|
tablite.core.Table.merge(left, right, new, criteria)
takes from LEFT where criteria is True else RIGHT. :param: T: Table :param: criteria: np.array(bool): if True take left column else take right column :param left: (str) column name :param right: (str) column name :param new: (str) new name
:returns: T
Example:
>>> c.show()
+==+====+====+====+====+
| #| A | B | C | D |
+--+----+----+----+----+
| 0| 1| 10| 1| 11|
| 1| 2| 20| 2| 12|
| 2| 3|None| 3| 13|
| 3|None| 40|None|None|
| 4| 5| 50|None|None|
| 5|None|None| 6| 16|
| 6|None|None| 7| 17|
+==+====+====+====+====+
>>> c.merge("A", "C", new="E", criteria=[v != None for v in c['A']])
>>> c.show()
+==+====+====+====+
| #| B | D | E |
+--+----+----+----+
| 0| 10| 11| 1|
| 1| 20| 12| 2|
| 2|None| 13| 3|
| 3| 40|None|None|
| 4| 50|None| 5|
| 5|None| 16| 6|
| 6|None| 17| 7|
+==+====+====+====+
Source code in tablite/core.py
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
|
tablite.core.Table.column_select(cols: list[ColumnSelectorDict], tqdm=_tqdm, TaskManager=_TaskManager)
type-casts columns from a given table to specified type(s)
cols
list of dicts: (example):
cols = [
{'column':'A', 'type': 'bool'},
{'column':'B', 'type': 'int', 'allow_empty': True},
{'column':'B', 'type': 'float', 'allow_empty': False, 'rename': 'C'},
]
'column' : column name of the input table that we want to type-cast 'type' : type that we want to type-cast the specified column to 'allow_empty': should we allow empty values (None, str('')) through (Default: False) 'rename' : new name of the column, if None will keep the original name, in case of duplicates suffix will be added (Default: None)
supported types: 'bool', 'int', 'float', 'str', 'date', 'time', 'datetime'
if any of the columns is rejected, entire row is rejected
tqdm: progressbar constructor TaskManager: TaskManager constructor
(TABLE, TABLE) | DESCRIPTION |
---|---|
first table contains the rows that were successfully cast to desired types |
|
second table contains rows that failed to cast + rejection reason |
Source code in tablite/core.py
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 |
|
tablite.core.Table.join(other, left_keys, right_keys, left_columns=None, right_columns=None, kind='inner', merge_keys=False, tqdm=_tqdm, pbar=None)
short-cut for all join functions. kind: 'inner', 'left', 'outer', 'cross'
Source code in tablite/core.py
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
|
tablite.core.Table.left_join(other, left_keys, right_keys, left_columns=None, right_columns=None, merge_keys=False, tqdm=_tqdm, pbar=None)
:param other: self, other = (left, right) :param left_keys: list of keys for the join :param right_keys: list of keys for the join :param left_columns: list of left columns to retain, if None, all are retained. :param right_columns: list of right columns to retain, if None, all are retained. :return: new Table Example:
SQL: SELECT number, letter FROM numbers LEFT JOIN letters ON numbers.colour == letters.color
Tablite: left_join = numbers.left_join(
letters, left_keys=['colour'], right_keys=['color'], left_columns=['number'], right_columns=['letter']
)
Source code in tablite/core.py
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 |
|
tablite.core.Table.inner_join(other, left_keys, right_keys, left_columns=None, right_columns=None, merge_keys=False, tqdm=_tqdm, pbar=None)
:param other: self, other = (left, right) :param left_keys: list of keys for the join :param right_keys: list of keys for the join :param left_columns: list of left columns to retain, if None, all are retained. :param right_columns: list of right columns to retain, if None, all are retained. :return: new Table Example:
SQL: SELECT number, letter FROM numbers JOIN letters ON numbers.colour == letters.color
Tablite: inner_join = numbers.inner_join(
letters, left_keys=['colour'], right_keys=['color'], left_columns=['number'], right_columns=['letter']
)
Source code in tablite/core.py
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 |
|
tablite.core.Table.outer_join(other, left_keys, right_keys, left_columns=None, right_columns=None, merge_keys=False, tqdm=_tqdm, pbar=None)
:param other: self, other = (left, right) :param left_keys: list of keys for the join :param right_keys: list of keys for the join :param left_columns: list of left columns to retain, if None, all are retained. :param right_columns: list of right columns to retain, if None, all are retained. :return: new Table Example:
SQL: SELECT number, letter FROM numbers OUTER JOIN letters ON numbers.colour == letters.color
Tablite: outer_join = numbers.outer_join(
letters, left_keys=['colour'], right_keys=['color'], left_columns=['number'], right_columns=['letter']
)
Source code in tablite/core.py
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 |
|
tablite.core.Table.cross_join(other, left_keys, right_keys, left_columns=None, right_columns=None, merge_keys=False, tqdm=_tqdm, pbar=None)
CROSS JOIN returns the Cartesian product of rows from tables in the join. In other words, it will produce rows which combine each row from the first table with each row from the second table
Source code in tablite/core.py
805 806 807 808 809 810 811 |
|
tablite.core.Table.lookup(other, *criteria, all=True, tqdm=_tqdm)
function for looking up values in other
according to criteria in ascending order.
:param: other: Table sorted in ascending search order.
:param: criteria: Each criteria must be a tuple with value comparisons in the form:
(LEFT, OPERATOR, RIGHT)
:param: all: boolean: True=ALL, False=Any
OPERATOR must be a callable that returns a boolean LEFT must be a value that the OPERATOR can compare. RIGHT must be a value that the OPERATOR can compare.
Examples:
('column A', "==", 'column B') # comparison of two columns
('Date', "<", DataTypes.date(24,12) ) # value from column 'Date' is before 24/12.
f = lambda L,R: all( ord(L) < ord(R) ) # uses custom function.
('text 1', f, 'text 2') value from column 'text 1' is compared with value from column 'text 2'
Source code in tablite/core.py
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 |
|
tablite.core.Table.match(other, *criteria, keep_left=None, keep_right=None)
performs inner join where T
matches other
and removes rows that do not match.
:param: T: Table :param: other: Table :param: criteria: Each criteria must be a tuple with value comparisons in the form:
(LEFT, OPERATOR, RIGHT), where operator must be "=="
Example:
('column A', "==", 'column B')
This syntax follows the lookup syntax. See Lookup for details.
:param: keep_left: list of columns to keep. :param: keep_right: list of right columns to keep.
Source code in tablite/core.py
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 |
|
tablite.core.Table.replace_missing_values(*args, **kwargs)
Source code in tablite/core.py
854 855 |
|
tablite.core.Table.imputation(targets, missing=None, method='carry forward', sources=None, tqdm=_tqdm)
In statistics, imputation is the process of replacing missing data with substituted values.
See more: https://en.wikipedia.org/wiki/Imputation_(statistics)
PARAMETER | DESCRIPTION |
---|---|
table |
source table.
TYPE:
|
targets |
column names to find and replace missing values
TYPE:
|
missing |
values to be replaced.
TYPE:
|
method |
method to be used for replacement. Options: 'carry forward': takes the previous value, and carries forward into fields where values are missing. +: quick. Realistic on time series. -: Can produce strange outliers. 'mean':
calculates the column mean (exclude 'mode':
calculates the column mode (exclude 'nearest neighbour': calculates normalised distance between items in source columns selects nearest neighbour and copies value as replacement. +: works for any datatype. -: computationally intensive (e.g. slow)
TYPE:
|
sources |
NEAREST NEIGHBOUR ONLY column names to be used during imputation. if None or empty, all columns will be used.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
table
|
table with replaced values. |
Source code in tablite/core.py
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 |
|
tablite.core.Table.transpose(tqdm=_tqdm)
Source code in tablite/core.py
906 907 |
|
tablite.core.Table.pivot_transpose(columns, keep=None, column_name='transpose', value_name='value', tqdm=_tqdm)
Transpose a selection of columns to rows.
PARAMETER | DESCRIPTION |
---|---|
columns |
column names to transpose
TYPE:
|
keep |
column names to keep (repeat)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table
|
with columns transposed to rows |
Example
transpose columns 1,2 and 3 and transpose the remaining columns, except sum
.
Input:
| col1 | col2 | col3 | sun | mon | tue | ... | sat | sum |
|------|------|------|-----|-----|-----|-----|-----|------|
| 1234 | 2345 | 3456 | 456 | 567 | | ... | | 1023 |
| 1244 | 2445 | 4456 | | 7 | | ... | | 7 |
| ... | | | | | | | | |
t.transpose(keep=[col1, col2, col3], transpose=[sun,mon,tue,wed,thu,fri,sat])`
Output:
|col1| col2| col3| transpose| value|
|----|-----|-----|----------|------|
|1234| 2345| 3456| sun | 456|
|1234| 2345| 3456| mon | 567|
|1244| 2445| 4456| mon | 7|
Source code in tablite/core.py
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 |
|
tablite.core.Table.diff(other, columns=None)
compares table self with table other
PARAMETER | DESCRIPTION |
---|---|
self |
Table
TYPE:
|
other |
Table
TYPE:
|
columns |
list of column names to include in comparison. Defaults to None.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Table
|
diff of self and other with diff in columns 1st and 2nd. |
Source code in tablite/core.py
943 944 945 946 947 948 949 950 951 952 953 954 |
|