Jupyter Notebook extension to levarage pandas DataFrames by integrating DataTables JS.
Project description
Jupyter DataTables
Jupyter Notebook extension to levarage pandas DataFrames by integrating DataTables JS.
About
Data scientists and in fact many developers work with pd.DataFrame
on daily basis to interpret data to process them. In my typical workflow. The common workflow is to display the dataframe, take a look at the data schema and then produce multiple plots to check the distribution of the data to have a clearer picture, perhaps search some data in the table, etc...
What if those distribution plots were part of the standard DataFrame and we had the ability to quickly search through the table with minimal effort? What if it was the default representation?
The jupyter-datatables uses jupyter-require to draw the table.
Installation
pip install jupyter-datatables
And enable the required extensions
jupyter nbextension install --sys-prefix --py jupyter_require
jupyter nbextension enable jupyter-require/extension
Usage
import numpy as np
import pandas as pd
from jupyter-datatables import init_datatables_mode
init_datatables_mode()
That's it, your default pandas representation will now use Jupyter DataTables!
df = pd.DataFrame(np.abs(np.random.randn(50, 8)), columns=list(string.ascii_uppercase[:8]))
We can also handle wide tables with ease.
df = pd.DataFrame(np.abs(np.random.randn(50, 20)), columns=list(string.ascii_uppercase[:20]))
The future plans:
-
provide distribution plots for different data types
-
allow custom operations on the table:
- edit column name
- edit column type
-
handle multi index
-
handle nested data
-
improve plotting:
- performance and efficiency
- customizable
- resizable
- dockable
- draggable to a Jupyter cell (??)
-
[stretch goal] increased performance and space efficiency by server-side processing -- lazy loading
Author: Marek Cermak macermak@redhat.com, @AICoE - Project Thoth
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
File details
Details for the file jupyter-datatables-0.1.3.tar.gz
.
File metadata
- Download URL: jupyter-datatables-0.1.3.tar.gz
- Upload date:
- Size: 503.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.19.6 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6937a13eade5a129c25c52773d5db0c5e5c2c24bb7fb9248cc9b2df2af9cad98 |
|
MD5 | 47a7eaf12ab98883cd18f8b4b1d53992 |
|
BLAKE2b-256 | 11eadd106c9a712db2b350a3a11bd1f8b3b3eb513fc67da5726674af6e5398cb |
File details
Details for the file jupyter_datatables-0.1.3-py2.py3-none-any.whl
.
File metadata
- Download URL: jupyter_datatables-0.1.3-py2.py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.19.6 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f455fb5d650b11312fcbb6268a4ffcc9d64c256ce43b29a07dc1370d3bbf833 |
|
MD5 | 82733a5364f2e4d5bd86e797cef7f0f9 |
|
BLAKE2b-256 | 5d466933d52fd5443c97424f5e5d9bcb72375145e551a61d1ffdc46c0661d144 |