Skip to content

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
def __init__(self, columns=None, headers=None, rows=None, _path=None) -> None:
    """creates Table

    Args:
        EITHER:
            columns (dict, optional): dict with column names as keys, values as lists.
            Example: t = Table(columns={"a": [1, 2], "b": [3, 4]})
        OR
            headers (list of strings, optional): list of column names.
            rows (list of tuples or lists, optional): values for columns
            Example: t = Table(headers=["a", "b"], rows=[[1,3], [2,4]])
    """
    super().__init__(columns, headers, rows, _path)
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
def __str__(self):  # USER FUNCTION.
    return f"{self.__class__.__name__}({len(self.columns):,} columns, {len(self):,} rows)"
tablite.core.Table.__repr__()
Source code in tablite/base.py
1131
1132
def __repr__(self):
    return self.__str__()
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
def nbytes(self):  # USER FUNCTION.
    """finds the total bytes of the table on disk

    Returns:
        tuple:
            int: real bytes used on disk
            int: total bytes used if flattened
    """
    real = {}
    total = 0
    for column in self.columns.values():
        for page in set(column.pages):
            real[page] = page.path.stat().st_size
        for page in column.pages:
            total += real[page]
    return sum(real.values()), total
tablite.core.Table.items()

returns table as dict

RETURNS DESCRIPTION
dict

Table as dict {column_name: [values], ...}

Source code in tablite/base.py
1151
1152
1153
1154
1155
1156
1157
1158
1159
def items(self):  # USER FUNCTION.
    """returns table as dict

    Returns:
        dict: Table as dict `{column_name: [values], ...}`
    """
    return {
        name: column[:].tolist() for name, column in self.columns.items()
    }.items()
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
def __delitem__(self, key):  # USER FUNCTION.
    """
    Examples:
    ```
    >>> del table['a']  # removes column 'a'
    >>> del table[-3:]  # removes last 3 rows from all columns.
    ```
    """
    if isinstance(key, (int, slice)):
        for column in self.columns.values():
            del column[key]
    elif key in self.columns:
        del self.columns[key]
    else:
        raise KeyError(f"Key not found: {key}")
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
def __setitem__(self, key, value):  # USER FUNCTION
    """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.
    """
    if value is None:
        self.columns[key] = Column(self.path, value=None)
    elif isinstance(value, (list, tuple)):
        value = list_to_np_array(value)
        self.columns[key] = Column(self.path, value)
    elif isinstance(value, (np.ndarray)):
        self.columns[key] = Column(self.path, value)
    elif isinstance(value, Column):
        self.columns[key] = value
    else:
        raise TypeError(f"{type(value)} not supported.")
tablite.core.Table.__getitem__(keys)

Enables selection of columns and rows

PARAMETER DESCRIPTION
keys

TYPE: column name, integer or slice

Examples

>>>

10] selects first 10 rows from all columns

TYPE: table[

>>>

20:3] selects column 'b' and 'c' and 'a' twice for a slice.

TYPE: table['b', 'a', 'a', 'c', 2

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
def __getitem__(self, keys):  # USER FUNCTION
    """
    Enables selection of columns and rows

    Args:
        keys (column name, integer or slice):
        Examples:
        ```
        >>> table['a']                        selects column 'a'
        >>> table[3]                          selects row 3 as a tuple.
        >>> table[:10]                        selects first 10 rows from all columns
        >>> table['a','b', slice(3,20,2)]     selects a slice from columns 'a' and 'b'
        >>> table['b', 'a', 'a', 'c', 2:20:3] selects column 'b' and 'c' and 'a' twice for a slice.
        >>> table[('b', 'a', 'a', 'c')]       selects columns 'b', 'a', 'a', and 'c' using a tuple.
        ```
    Raises:
        KeyError: if key is not found.
        TypeError: if key is not a string, integer or slice.

    Returns:
        Table: returns columns in same order as selection.
    """

    if not isinstance(keys, tuple):
        if isinstance(keys, list):
            keys = tuple(keys)
        else:
            keys = (keys,)
    if isinstance(keys[0], tuple):
        keys = tuple(list(chain(*keys)))

    integers = [i for i in keys if isinstance(i, int)]
    if len(integers) == len(keys) == 1:  # return a single tuple.
        keys = [slice(keys[0])]

    column_names = [i for i in keys if isinstance(i, str)]
    column_names = list(self.columns) if not column_names else column_names
    not_found = [name for name in column_names if name not in self.columns]
    if not_found:
        raise KeyError(f"keys not found: {', '.join(not_found)}")

    slices = [i for i in keys if isinstance(i, slice)]
    slc = slice(0, len(self)) if not slices else slices[0]

    if (
        len(slices) == 0 and len(column_names) == 1
    ):  # e.g. tbl['a'] or tbl['a'][:10]
        col = self.columns[column_names[0]]
        if slices:
            return col[slc]  # return slice from column as list of values
        else:
            return col  # return whole column

    elif len(integers) == 1:  # return a single tuple.
        row_no = integers[0]
        slc = slice(row_no, row_no + 1)
        return tuple(self.columns[name][slc].tolist()[0] for name in column_names)

    elif not slices:  # e.g. new table with N whole columns.
        return self.__class__(
            columns={name: self.columns[name] for name in column_names}
        )

    else:  # e.g. new table from selection of columns and slices.
        t = self.__class__()
        for name in column_names:
            column = self.columns[name]

            new_column = Column(t.path)  # create new Column.
            for item in column.getpages(slc):
                if isinstance(item, np.ndarray):
                    new_column.extend(item)  # extend subslice (expensive)
                elif isinstance(item, SimplePage):
                    new_column.pages.append(item)  # extend page (cheap)
                else:
                    raise TypeError(f"Bad item: {item}")

            # below:
            # set the new column directly on t.columns.
            # Do not use t[name] as that triggers __setitem__ again.
            t.columns[name] = new_column

        return t
tablite.core.Table.__len__()
Source code in tablite/base.py
1289
1290
1291
1292
def __len__(self):  # USER FUNCTION.
    if not self.columns:
        return 0
    return max(len(c) for c in self.columns.values())
tablite.core.Table.__eq__(other) -> bool

Determines if two tables have identical content.

PARAMETER DESCRIPTION
other

table for comparison

TYPE: Table

RETURNS DESCRIPTION
bool

True if tables are identical.

TYPE: bool

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
def __eq__(self, other) -> bool:  # USER FUNCTION.
    """Determines if two tables have identical content.

    Args:
        other (Table): table for comparison

    Returns:
        bool: True if tables are identical.
    """
    if isinstance(other, dict):
        return self.items() == other.items()
    if not isinstance(other, BaseTable):
        return False
    if id(self) == id(other):
        return True
    if len(self) != len(other):
        return False
    if len(self) == len(other) == 0:
        return True
    if self.columns.keys() != other.columns.keys():
        return False
    for name, col in self.columns.items():
        if not (col == other.columns[name]):
            return False
    return True
tablite.core.Table.clear()

clears the table. Like dict().clear()

Source code in tablite/base.py
1346
1347
1348
def clear(self):  # USER FUNCTION.
    """clears the table. Like dict().clear()"""
    self.columns.clear()
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: Path

compression_method

See zipfile compression methods. Defaults to ZIP_DEFLATED.

DEFAULT: ZIP_DEFLATED

compression_level

See zipfile compression levels. Defaults to 1.

DEFAULT: 1

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
def save(
    self, path, compression_method=zipfile.ZIP_DEFLATED, compression_level=1
):  # USER FUNCTION.
    """saves table to compressed tpz file.

    Args:
        path (Path): file destination.
        compression_method: See zipfile compression methods. Defaults to ZIP_DEFLATED.
        compression_level: See zipfile compression levels. Defaults to 1.
        The default settings produce 80% compression at 10% slowdown.

    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.
    ----------------------------------------
    ```
    """
    if isinstance(path, str):
        path = Path(path)
    type_check(path, Path)
    if path.is_dir():
        raise TypeError(f"filename needed: {path}")
    if path.suffix != ".tpz":
        path = path.parent / (path.parts[-1] + ".tpz")

    # create yaml document
    _page_counter = 0
    d = {}
    cols = {}
    for name, col in self.columns.items():
        type_check(col, Column)
        cols[name] = {"pages": [p.path.name for p in col.pages]}
        _page_counter += len(col.pages)
    d["columns"] = cols
    yml = yaml.safe_dump(
        d, sort_keys=False, allow_unicode=True, default_flow_style=None
    )

    _file_counter = 0
    with zipfile.ZipFile(
        path, "w", compression=compression_method, compresslevel=compression_level
    ) as f:
        log.debug(f"writing .tpz to {path} with\n{yml}")
        f.writestr("table.yml", yml)
        for name, col in self.columns.items():
            for page in set(
                col.pages
            ):  # set of pages! remember t *= 1000 repeats t 1000x
                with open(page.path, "rb", buffering=0) as raw_io:
                    f.writestr(page.path.name, raw_io.read())
                _file_counter += 1
                log.debug(f"adding Page {page.path}")

        _fields = len(self) * len(self.columns)
        _avg = _fields // _page_counter
        log.debug(
            f"Wrote {_fields:,} on {_page_counter:,} pages in {_file_counter} files: {_avg} fields/page"
        )
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: Path

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
@classmethod
def load(cls, path, tqdm=_tqdm):  # USER FUNCTION.
    """loads a table from .tpz file.
    See also Table.save for details on the file format.

    Args:
        path (Path): source file

    Returns:
        Table: table in read-only mode.
    """
    path = Path(path)
    log.debug(f"loading {path}")
    with zipfile.ZipFile(path, "r") as f:
        yml = f.read("table.yml")
        metadata = yaml.safe_load(yml)
        t = cls()

        page_count = sum([len(c["pages"]) for c in metadata["columns"].values()])

        with tqdm(
            total=page_count,
            desc=f"loading '{path.name}' file",
            disable=Config.TQDM_DISABLE,
        ) as pbar:
            for name, d in metadata["columns"].items():
                column = Column(t.path)
                for page in d["pages"]:
                    bytestream = io.BytesIO(f.read(page))
                    data = np.load(bytestream, allow_pickle=True, fix_imports=False)
                    column.extend(data)
                    pbar.update(1)
                t.columns[name] = column
    update_access_time(path)
    return t
tablite.core.Table.copy()
Source code in tablite/base.py
1455
1456
1457
1458
1459
1460
1461
1462
def copy(self):
    cls = type(self)
    t = cls()
    for name, column in self.columns.items():
        new = Column(t.path)
        new.pages = column.pages[:]
        t.columns[name] = new
    return t
tablite.core.Table.__imul__(other)

Repeats instance of table N times.

Like list: t = t * N

PARAMETER DESCRIPTION
other

multiplier

TYPE: int

Source code in tablite/base.py
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
def __imul__(self, other):
    """Repeats instance of table N times.

    Like list: `t = t * N`

    Args:
        other (int): multiplier
    """
    if not (isinstance(other, int) and other > 0):
        raise TypeError(
            f"a table can be repeated an integer number of times, not {type(other)} number of times"
        )
    for col in self.columns.values():
        col *= other
    return self
tablite.core.Table.__mul__(other)

Repeat table N times. Like list: new = old * N

PARAMETER DESCRIPTION
other

multiplier

TYPE: int

RETURNS DESCRIPTION

Table

Source code in tablite/base.py
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
def __mul__(self, other):
    """Repeat table N times.
    Like list: `new = old * N`

    Args:
        other (int): multiplier

    Returns:
        Table
    """
    new = self.copy()
    return new.__imul__(other)
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
def __iadd__(self, other):
    """Concatenates tables with same column names.

    Like list: `table_1 += table_2`

    Args:
        other (Table)

    Raises:
        ValueError: If column names don't match.

    Returns:
        None: self is updated.
    """
    type_check(other, BaseTable)
    for name in self.columns.keys():
        if name not in other.columns:
            raise ValueError(f"{name} not in other")
    for name in other.columns.keys():
        if name not in self.columns:
            raise ValueError(f"{name} missing from self")

    for name, column in self.columns.items():
        other_col = other.columns.get(name, None)
        column.pages.extend(other_col.pages[:])
    return self
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
def __add__(self, other):
    """Concatenates tables with same column names.

    Like list: `table_3 = table_1 + table_2`

    Args:
        other (Table)

    Raises:
        ValueError: If column names don't match.

    Returns:
        Table
    """
    type_check(other, BaseTable)
    cp = self.copy()
    cp += other
    return cp
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
def add_rows(self, *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
    ```

    """
    if not BaseTable._add_row_slow_warning:
        warnings.warn(
            "add_rows is slow. Consider using add_columns and then assigning values to the columns directly."
        )
        BaseTable._add_row_slow_warning = True

    if args:
        if not all(isinstance(i, (list, tuple, dict)) for i in args):  # 1,4
            args = [args]

        if all(isinstance(i, (list, tuple, dict)) for i in args):  # 2,3,7,8
            # 1. turn the data into columns:

            d = {n: [] for n in self.columns}
            for arg in args:
                if len(arg) != len(self.columns):
                    raise ValueError(
                        f"len({arg})== {len(arg)}, but there are {len(self.columns)} columns"
                    )

                if isinstance(arg, dict):
                    for k, v in arg.items():  # 7,8
                        d[k].append(v)

                elif isinstance(arg, (list, tuple)):  # 2,3
                    for n, v in zip(self.columns, arg):
                        d[n].append(v)

                else:
                    raise TypeError(f"{arg}?")
            # 2. extend the columns
            for n, values in d.items():
                col = self.columns[n]
                col.extend(list_to_np_array(values))

    if kwargs:
        if isinstance(kwargs, dict):
            if all(isinstance(v, (list, tuple)) for v in kwargs.values()):
                for k, v in kwargs.items():
                    col = self.columns[k]
                    col.extend(list_to_np_array(v))
            else:
                for k, v in kwargs.items():
                    col = self.columns[k]
                    col.extend(np.array([v]))
        else:
            raise ValueError(f"format not recognised: {kwargs}")

    return
tablite.core.Table.add_columns(*names)

Adds column names to table.

Source code in tablite/base.py
1618
1619
1620
1621
def add_columns(self, *names):
    """Adds column names to table."""
    for name in names:
        self.columns[name] = Column(self.path)
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: str

data

values. Defaults to None.

TYPE: list,tuple) DEFAULT: None

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
def add_column(self, name, data=None):
    """verbose alias for table[name] = data, that checks if name already exists

    Args:
        name (str): column name
        data ((list,tuple), optional): values. Defaults to None.

    Raises:
        TypeError: name isn't string
        ValueError: name already exists
    """
    if not isinstance(name, str):
        raise TypeError("expected name as string")
    if name in self.columns:
        raise ValueError(f"{name} already in {self.columns}")
    self.__setitem__(name, data)
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
def stack(self, 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|
    ```
    """
    if not isinstance(other, BaseTable):
        raise TypeError(f"stack only works for Table, not {type(other)}")

    cp = self.copy()
    for name, col2 in other.columns.items():
        if name not in cp.columns:
            cp[name] = [None] * len(self)
        cp[name].pages.extend(col2.pages[:])

    for name in self.columns:
        if name not in other.columns:
            if len(cp) > 0:
                cp[name].extend(np.array([None] * len(other)))
    return cp
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
def types(self):
    """
    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}
    }
    ```
    """
    d = {}
    for name, col in self.columns.items():
        assert isinstance(col, Column)
        d[name] = col.types()
    return d
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: slice DEFAULT: None

blanks

fill value for None. Defaults to None.

TYPE: optional DEFAULT: None

dtype

Adds datatype to each column. Defaults to False.

TYPE: bool DEFAULT: False

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
def display_dict(self, slice_=None, blanks=None, dtype=False):
    """helper for creating dict for display.

    Args:
        slice_ (slice, optional): python slice. Defaults to None.
        blanks (optional): fill value for `None`. Defaults to None.
        dtype (bool, optional): Adds datatype to each column. Defaults to False.

    Raises:
        TypeError: slice_ must be None or slice.

    Returns:
        dict: from Table.
    """
    if not self.columns:
        print("Empty Table")
        return

    def datatype(col):  # PRIVATE
        """creates label for column datatype."""
        types = col.types()
        if len(types) == 0:
            typ = "empty"
        elif len(types) == 1:
            dt, _ = types.popitem()
            typ = dt.__name__
        else:
            typ = "mixed"
        return typ

    row_count_tags = ["#", "~", "*"]
    cols = set(self.columns)
    for n, tag in product(range(1, 6), row_count_tags):
        if n * tag not in cols:
            tag = n * tag
            break

    if not isinstance(slice_, (slice, type(None))):
        raise TypeError(f"slice_ must be None or slice, not {type(slice_)}")
    if isinstance(slice_, slice):
        slc = slice_
    if slice_ is None:
        if len(self) <= 20:
            slc = slice(0, 20, 1)
        else:
            slc = None

    n = len(self)
    if slc:  # either we want slc or we want everything.
        row_no = list(range(*slc.indices(len(self))))
        data = {tag: [f"{i:,}".rjust(2) for i in row_no]}
        for name, col in self.columns.items():
            data[name] = list(chain(iter(col), repeat(blanks, times=n - len(col))))[
                slc
            ]
    else:
        data = {}
        j = int(math.ceil(math.log10(n)) / 3) + len(str(n))
        row_no = (
            [f"{i:,}".rjust(j) for i in range(7)]
            + ["..."]
            + [f"{i:,}".rjust(j) for i in range(n - 7, n)]
        )
        data = {tag: row_no}

        for name, col in self.columns.items():
            if len(col) == n:
                row = col[:7].tolist() + ["..."] + col[-7:].tolist()
            else:
                empty = [blanks] * 7
                head = (col[:7].tolist() + empty)[:7]
                tail = (col[n - 7 :].tolist() + empty)[-7:]
                row = head + ["..."] + tail
            data[name] = row

    if dtype:
        for name, values in data.items():
            if name in self.columns:
                col = self.columns[name]
                values.insert(0, datatype(col))
            else:
                values.insert(0, "row")

    return data
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: slice DEFAULT: None

blanks

value for whitespace. Defaults to None.

TYPE: str DEFAULT: None

dtype

adds subheader with datatype for column. Defaults to False.

TYPE: bool DEFAULT: False

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
def to_ascii(self, slice_=None, blanks=None, dtype=False):
    """returns ascii view of table as string.

    Args:
        slice_ (slice, optional): slice to determine table snippet.
        blanks (str, optional): value for whitespace. Defaults to None.
        dtype (bool, optional): adds subheader with datatype for column. Defaults to False.
    """

    def adjust(v, length):  # PRIVATE FUNCTION
        """whitespace justifies field values based on datatype"""
        if v is None:
            return str(blanks).ljust(length)
        elif isinstance(v, str):
            return v.ljust(length)
        else:
            return str(v).rjust(length)

    if not self.columns:
        return str(self)

    d = {}
    for name, values in self.display_dict(
        slice_=slice_, blanks=blanks, dtype=dtype
    ).items():
        as_text = [str(v) for v in values] + [str(name)]
        width = max(len(i) for i in as_text)
        new_name = name.center(width, " ")
        if dtype:
            values[0] = values[0].center(width, " ")
        d[new_name] = [adjust(v, width) for v in values]

    rows = dict_to_rows(d)
    s = []
    s.append("+" + "+".join(["=" * len(n) for n in rows[0]]) + "+")
    s.append("|" + "|".join(rows[0]) + "|")  # column names
    start = 1
    if dtype:
        s.append("|" + "|".join(rows[1]) + "|")  # datatypes
        start = 2

    s.append("+" + "+".join(["-" * len(n) for n in rows[0]]) + "+")
    for row in rows[start:]:
        s.append("|" + "|".join(row) + "|")
    s.append("+" + "+".join(["=" * len(n) for n in rows[0]]) + "+")

    if len(set(len(c) for c in self.columns.values())) != 1:
        warning = f"Warning: Columns have different lengths. {blanks} is used as fill value."
        s.append(warning)

    return "\n".join(s)
tablite.core.Table.show(slice_=None, blanks=None, dtype=False)

prints ascii view of table.

PARAMETER DESCRIPTION
slice_

slice to determine table snippet.

TYPE: slice DEFAULT: None

blanks

value for whitespace. Defaults to None.

TYPE: str DEFAULT: None

dtype

adds subheader with datatype for column. Defaults to False.

TYPE: bool DEFAULT: False

Source code in tablite/base.py
1822
1823
1824
1825
1826
1827
1828
1829
1830
def show(self, slice_=None, blanks=None, dtype=False):
    """prints ascii view of table.

    Args:
        slice_ (slice, optional): slice to determine table snippet.
        blanks (str, optional): value for whitespace. Defaults to None.
        dtype (bool, optional): adds subheader with datatype for column. Defaults to False.
    """
    print(self.to_ascii(slice_=slice_, blanks=blanks, dtype=dtype))
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
def to_dict(self, 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]}
    ```

    """
    if slice_ is None:
        slice_ = slice(0, len(self))
    assert isinstance(slice_, slice)

    if columns is None:
        columns = list(self.columns.keys())
    if not isinstance(columns, list):
        raise TypeError("expected columns as list of strings")

    return {name: list(self.columns[name][slice_]) for name in columns}
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: str DEFAULT: 'row id'

start_on

row counts starts by default on 1.

TYPE: int DEFAULT: 1

columns

Column names. Defaults to None which returns all columns.

TYPE: list of str DEFAULT: None

slice_

selector. Defaults to None which returns [:]

TYPE: slice DEFAULT: None

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
def as_json_serializable(
    self, row_count="row id", start_on=1, columns=None, slice_=None
):
    """provides a JSON compatible format of the table.

    Args:
        row_count (str, optional): Label for row counts. Defaults to "row id".
        start_on (int, optional): row counts starts by default on 1.
        columns (list of str, optional): Column names.
            Defaults to None which returns all columns.
        slice_ (slice, optional): selector. Defaults to None which returns [:]

    Returns:
        JSON serializable dict: All python datatypes have been converted to JSON compliant data.
    """
    if slice_ is None:
        slice_ = slice(0, len(self))

    assert isinstance(slice_, slice)
    new = {"columns": {}, "total_rows": len(self)}
    if row_count is not None:
        new["columns"][row_count] = [
            i + start_on for i in range(*slice_.indices(len(self)))
        ]

    d = self.to_dict(columns, slice_=slice_)
    for k, data in d.items():
        new_k = unique_name(
            k, new["columns"]
        )  # used to avoid overwriting the `row id` key.
        new["columns"][new_k] = [
            DataTypes.to_json(v) for v in data
        ]  # deal with non-json datatypes.
    return new
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
def index(self, *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]})
        ```

    """
    idx = defaultdict(list)
    iterators = [iter(self.columns[c]) for c in args]
    for ix, key in enumerate(zip(*iterators)):
        key = tuple(numpy_to_python(k) for k in key)
        idx[key].append(ix)
    return idx
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: any DEFAULT: ()

tqdm

Defaults to _tqdm.

TYPE: tqdm DEFAULT: tqdm

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
def unique_index(self, *args, tqdm=_tqdm):
    """generates the index of unique rows given a list of column names

    Args:
        *args (any): columns names
        tqdm (tqdm, optional): Defaults to _tqdm.

    Returns:
        np.array(int64): indices of unique records.
    """
    if not args:
        raise ValueError("*args (column names) is required")
    seen = set()
    unique = set()
    iterators = [iter(self.columns[c]) for c in args]
    for ix, key in tqdm(enumerate(zip(*iterators)), disable=Config.TQDM_DISABLE):
        key_hash = hash(tuple(numpy_to_python(k) for k in key))
        if key_hash in seen:
            continue
        else:
            seen.add(key_hash)
            unique.add(ix)
    return np.array(sorted(unique))
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
@classmethod
def from_file(
    cls,
    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":
    """
    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: '\n' (default) or '\r\n'

    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: "\t" (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 }])

    """
    if isinstance(path, str):
        path = Path(path)
    type_check(path, Path)

    if not path.exists():
        raise FileNotFoundError(f"file not found: {path}")

    if not isinstance(start, int) or not 0 <= start <= sys.maxsize:
        raise ValueError(f"start {start} not in range(0,{sys.maxsize})")

    if not isinstance(limit, int) or not 0 < limit <= sys.maxsize:
        raise ValueError(f"limit {limit} not in range(0,{sys.maxsize})")

    if not isinstance(first_row_has_headers, bool):
        raise TypeError("first_row_has_headers is not bool")

    import_as = path.suffix
    if import_as.startswith("."):
        import_as = import_as[1:]

    reader = import_utils.file_readers.get(import_as, None)
    if reader is None:
        raise ValueError(f"{import_as} is not in supported format: {import_utils.valid_readers}")

    additional_configs = {"tqdm": tqdm}
    if reader == import_utils.text_reader:
        # here we inject tqdm, if tqdm is not provided, use generic iterator
        # fmt:off
        config = (path, columns, first_row_has_headers, header_row_index, encoding, start, limit, newline,
                  guess_datatypes, text_qualifier, strip_leading_and_tailing_whitespace, skip_empty,
                  delimiter, text_escape_openings, text_escape_closures)
        # fmt:on

    elif reader == import_utils.from_html:
        config = (path,)
    elif reader == import_utils.from_hdf5:
        config = (path,)

    elif reader == import_utils.excel_reader:
        # config = path, first_row_has_headers, sheet, columns, start, limit
        config = (
            path,
            first_row_has_headers,
            header_row_index,
            sheet,
            columns,
            skip_empty,
            start,
            limit,
        )  # if file length changes - re-import.

    if reader == import_utils.ods_reader:
        # path, first_row_has_headers=True, sheet=None, columns=None, start=0, limit=sys.maxsize,
        config = (
            str(path),
            first_row_has_headers,
            header_row_index,
            sheet,
            columns,
            skip_empty,
            start,
            limit,
        )  # if file length changes - re-import.

    # At this point the import config seems valid.
    # Now we check if the file already has been imported.

    # publish the settings
    return reader(cls, *config, **additional_configs)
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
@classmethod
def from_pandas(cls, df):
    """
    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|
        +===+===+===+
    ```
    """
    return import_utils.from_pandas(cls, df)
tablite.core.Table.from_hdf5(path) classmethod

imports an exported hdf5 table.

Source code in tablite/core.py
250
251
252
253
254
255
@classmethod
def from_hdf5(cls, path):
    """
    imports an exported hdf5 table.
    """
    return import_utils.from_hdf5(cls, path)
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
@classmethod
def from_json(cls, jsn):
    """
    Imports table exported using .to_json
    """
    return import_utils.from_json(cls, jsn)
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
def to_hdf5(self, path):
    """
    creates a copy of the table as hdf5
    """
    export_utils.to_hdf5(self, path)
tablite.core.Table.to_pandas()

returns pandas.DataFrame

Source code in tablite/core.py
270
271
272
273
274
def to_pandas(self):
    """
    returns pandas.DataFrame
    """
    return export_utils.to_pandas(self)
tablite.core.Table.to_sql(name)

generates ANSI-92 compliant SQL.

Source code in tablite/core.py
276
277
278
279
280
def to_sql(self, name):
    """
    generates ANSI-92 compliant SQL.
    """
    return export_utils.to_sql(self, name)  # remove after update to test suite.
tablite.core.Table.to_json()

returns JSON

Source code in tablite/core.py
282
283
284
285
286
def to_json(self):
    """
    returns JSON
    """
    return export_utils.to_json(self)
tablite.core.Table.to_xlsx(path)

exports table to path

Source code in tablite/core.py
288
289
290
291
292
293
def to_xlsx(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".xlsx")
    export_utils.excel_writer(self, path)
tablite.core.Table.to_ods(path)

exports table to path

Source code in tablite/core.py
295
296
297
298
299
300
def to_ods(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".ods")
    export_utils.excel_writer(self, path)
tablite.core.Table.to_csv(path)

exports table to path

Source code in tablite/core.py
302
303
304
305
306
307
def to_csv(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".csv")
    export_utils.text_writer(self, path)
tablite.core.Table.to_tsv(path)

exports table to path

Source code in tablite/core.py
309
310
311
312
313
314
def to_tsv(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".tsv")
    export_utils.text_writer(self, path)
tablite.core.Table.to_text(path)

exports table to path

Source code in tablite/core.py
316
317
318
319
320
321
def to_text(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".txt")
    export_utils.text_writer(self, path)
tablite.core.Table.to_html(path)

exports table to path

Source code in tablite/core.py
323
324
325
326
327
328
def to_html(self, path):
    """
    exports table to path
    """
    export_utils.path_suffix_check(path, ".html")
    export_utils.to_html(self, path)
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
def expression(self, 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))
    """
    return redux._filter_using_expression(self, expression)
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
def filter(self, 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'
    """
    return redux.filter(self, expressions, filter_type, tqdm)
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
def sort_index(self, 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()
    """
    return sortation.sort_index(self, sort_mode, tqdm=tqdm, pbar=pbar, **kwargs)
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
def reindex(self, 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']

    """
    if isinstance(index, list):
        index = np.array(index)
    return _reindex.reindex(self, index)
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
def drop_duplicates(self, *args):
    """
    removes duplicate rows based on column names

    args: (optional) column_names
    if no args, all columns are used.
    """
    if not args:
        args = self.columns
    index = self.unique_index(*args)
    return self.reindex(index)
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: dict

sort_mode

str: "alphanumeric", "unix", or, "excel"

DEFAULT: 'excel'

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
def sort(self, mapping, sort_mode="excel", tqdm=_tqdm, pbar: _tqdm = None):
    """Perform multi-pass sorting with precedence given order of column names.

    Args:
        mapping (dict): keys as columns,
                        values as boolean for 'reverse'
        sort_mode: str: "alphanumeric", "unix", or, "excel"

    Returns:
        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.
    """
    new = sortation.sort(self, mapping, sort_mode, tqdm=tqdm, pbar=pbar)
    self.columns = new.columns
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
def sorted(self, 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:
        Table.
    """
    return sortation.sort(self, mapping, sort_mode, tqdm=tqdm, pbar=pbar)
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
def is_sorted(self, 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
    """
    return sortation.is_sorted(self, mapping, sort_mode)
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
def any(self, **kwargs):
    """
    returns Table for rows where ANY kwargs match
    :param kwargs: dictionary with headers and values / boolean callable
    """
    return redux.filter_any(self, **kwargs)
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
def all(self, **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]]


    """
    return redux.filter_all(self, **kwargs)
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
def drop(self, *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])

    """
    if not args:
        raise ValueError("What to drop? None? np.nan? ")
    return redux.drop(self, *args)
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: dict

columns

target columns. Defaults to None (all columns)

TYPE: list or str DEFAULT: None

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
def replace(self, mapping, columns=None, tqdm=_tqdm, pbar=None):
    """replaces all mapped keys with values from named columns

    Args:
        mapping (dict): keys are targets for replacement,
                        values are replacements.
        columns (list or str, optional): target columns.
            Defaults to None (all columns)

    Raises:
        ValueError: _description_
    """
    if columns is None:
        columns = list(self.columns)
    if not isinstance(columns, list) and columns in self.columns:
        columns = [columns]
    type_check(columns, list)
    for n in columns:
        if n not in self.columns:
            raise ValueError(f"column not found: {n}")

    if pbar is None:
        total = len(columns)
        pbar = tqdm(total=total, desc="replace", disable=Config.TQDM_DISABLE)

    for name in columns:
        col = self.columns[name]
        col.replace(mapping)
        pbar.update(1)
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
def groupby(self, 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

    """
    return _groupby(self, keys, functions, tqdm, pbar)
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
def pivot(self, 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|
    +===+===+========+=====+=====+=====+
    ```
    """
    return pivots.pivot(self, rows, columns, functions, values_as_rows, tqdm=tqdm, pbar=pbar)
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
def merge(self, 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|
    +==+====+====+====+
    ```
    """
    return merge.where(self, criteria,left,right,new)
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
def column_select(self, 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

    returns: (Table, Table)
        first table contains the rows that were successfully cast to desired types
        second table contains rows that failed to cast + rejection reason
    """
    return _column_select(self, cols, tqdm=tqdm, TaskManager=TaskManager)
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
def join(self, 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'
    """
    kinds = {
        "inner": self.inner_join,
        "left": self.left_join,
        "outer": self.outer_join,
        "cross": self.cross_join,
    }
    if kind not in kinds:
        raise ValueError(f"join type unknown: {kind}")
    f = kinds.get(kind, None)
    return f(other, left_keys, right_keys, left_columns, right_columns, merge_keys=merge_keys, tqdm=tqdm, pbar=pbar)
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
def left_join(self, 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']
    )
    ```
    """
    return joins.left_join(self, other, left_keys, right_keys, left_columns, right_columns, merge_keys=merge_keys, tqdm=tqdm, pbar=pbar)
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
def inner_join(self, 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']
        )
    ```
    """
    return joins.inner_join(self, other, left_keys, right_keys, left_columns, right_columns, merge_keys=merge_keys, tqdm=tqdm, pbar=pbar)
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
def outer_join(self, 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']
        )
    ```
    """
    return joins.outer_join(self, other, left_keys, right_keys, left_columns, right_columns, merge_keys=merge_keys, tqdm=tqdm, pbar=pbar)
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
def cross_join(self, 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
    """
    return joins.cross_join(self, other, left_keys, right_keys, left_columns, right_columns, merge_keys=merge_keys, tqdm=tqdm, pbar=pbar)
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
def lookup(self, 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'
    ```
    """
    return lookup.lookup(self, other, *criteria, all=all, tqdm=tqdm)
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
def match(self, 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.
    """
    return match.match(self, other, *criteria, keep_left=keep_left, keep_right=keep_right)
tablite.core.Table.replace_missing_values(*args, **kwargs)
Source code in tablite/core.py
854
855
def replace_missing_values(self, *args, **kwargs):
    raise AttributeError("See imputation")
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: Table

targets

column names to find and replace missing values

TYPE: str or list of strings

missing

values to be replaced.

TYPE: None or iterable DEFAULT: None

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 missing) and copies the mean in as replacement. +: quick -: doesn't work on text. Causes data set to drift towards the mean.

'mode': calculates the column mode (exclude missing) and copies the mean in as replacement. +: quick -: most frequent value becomes over-represented in the sample

'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: str DEFAULT: 'carry forward'

sources

NEAREST NEIGHBOUR ONLY column names to be used during imputation. if None or empty, all columns will be used.

TYPE: list of strings DEFAULT: None

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
def imputation(self, 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)

    Args:
        table (Table): source table.

        targets (str or list of strings): column names to find and
            replace missing values

        missing (None or iterable): values to be replaced.

        method (str): 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 `missing`) and copies
                the mean in as replacement.
                +: quick
                -: doesn't work on text. Causes data set to drift towards the mean.

            'mode':
                calculates the column mode (exclude `missing`) and copies
                the mean in as replacement.
                +: quick
                -: most frequent value becomes over-represented in the sample

            '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)

        sources (list of strings): NEAREST NEIGHBOUR ONLY
            column names to be used during imputation.
            if None or empty, all columns will be used.

    Returns:
        table: table with replaced values.
    """
    return imputation.imputation(self, targets, missing, method, sources, tqdm=tqdm)
tablite.core.Table.transpose(tqdm=_tqdm)
Source code in tablite/core.py
906
907
def transpose(self, tqdm=_tqdm):
    return pivots.transpose(self, tqdm)
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: list of column names

keep

column names to keep (repeat)

TYPE: list of column names DEFAULT: None

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
def pivot_transpose(self, columns, keep=None, column_name="transpose", value_name="value", tqdm=_tqdm):
    """Transpose a selection of columns to rows.

    Args:
        columns (list of column names): column names to transpose
        keep (list of column names): column names to keep (repeat)

    Returns:
        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|
    ```
    """
    return pivots.pivot_transpose(self, columns, keep, column_name, value_name, tqdm=tqdm)
tablite.core.Table.diff(other, columns=None)

compares table self with table other

PARAMETER DESCRIPTION
self

Table

TYPE: Table

other

Table

TYPE: Table

columns

list of column names to include in comparison. Defaults to None.

TYPE: List DEFAULT: None

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
def diff(self, other, columns=None):
    """compares table self with table other

    Args:
        self (Table): Table
        other (Table): Table
        columns (List, optional): list of column names to include in comparison. Defaults to None.

    Returns:
        Table: diff of self and other with diff in columns 1st and 2nd.
    """
    return diff.diff(self, other, columns)

Functions

Modules