Read, write, and query sparse tables
Project description
Query, write, read, and dynamically grow a sparse numeric table. I do love pandas.DataFrame and I do love numpy.recarray. But when the table is sparse and still won’t fit into your memory one needs to combine the best of pandas, numpy and zipfile to get the job done. This is the Sparse Numeric Table.
Install
pip install sparse-numeric-table-sebastian-achim-mueller
Test
pytest .
Fileformat
Efficient write and read using binary blocks (numpy dumps) in a zip file. On read, you only need to read the columns and indices you need. No need to read the entire file. Files can be explored with any zip file reader.
Usage
See ./sparse_numeric_table/tests for examples.
1st) You create a dict representing the dtypes of your table. Columns which only appear together are bundeled into a level . Each level has an index to merge and join with other levels.
my_table_dtypes = {
"A": [
("a", "<u8"),
("b", "<f8"),
("c", "<f4"),
],
"B": [
("g", "<i8"),
],
"C": [
("m", "<i2"),
("n", "<u8"),
],
}
Here A , B , and C are the level keys. a, ... , n are the column keys.
2nd) You create/read/write the table.
A B C
idx a b c idx g idx m n
___ _ _ _ ___ _
|_0_|_|_|_| |_0_|_|
|_1_|_|_|_|
|_2_|_|_|_| ___ _
|_3_|_|_|_| |_3_|_|
|_4_|_|_|_| |_4_|_| ___ _ _
|_5_|_|_|_| |_5_|_| |_5_|_|_|
|_6_|_|_|_|
|_7_|_|_|_|
|_8_|_|_|_| ___ _
|_9_|_|_|_| |_9_|_|
|10_|_|_|_| |10_|_|
|11_|_|_|_| ___ _ ___ _ _
|12_|_|_|_| |12_|_| |12_|_|_|
|13_|_|_|_| ___ _
|14_|_|_|_| |14_|_|
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sparse_numeric_table_sebastian_achim_mueller-1.2.11.tar.gz.
File metadata
- Download URL: sparse_numeric_table_sebastian_achim_mueller-1.2.11.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9caf926c423ae9879bb002ecfe000cb80765a798c0e03acbf1da826fff3e8e57
|
|
| MD5 |
7bdad2f20e6198d264700b479bafd888
|
|
| BLAKE2b-256 |
2a93bd32ab754b819a273d473b35b1adabd4fcb3350e0ca91fd53294975a41fe
|
File details
Details for the file sparse_numeric_table_sebastian_achim_mueller-1.2.11-py3-none-any.whl.
File metadata
- Download URL: sparse_numeric_table_sebastian_achim_mueller-1.2.11-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24fcae350721a51a5c783e548d9128f6d2c481ecb8049dfba3c8d3f50d86274e
|
|
| MD5 |
b5038cd36d86344a8353fa6ddea3c91a
|
|
| BLAKE2b-256 |
2d106d52caa3631320675ed745b969379ad984d5a8164183aae79e166838f807
|