https://github.com/simon-ritchie/pandas-table-tooltip
Pandas Table Tooltip is a Python librarythat only adds index and column tooltips to Pandas tables on Jupyter.
https://github.com/simon-ritchie/pandas-table-tooltip
pandas python
Last synced: 2 months ago
JSON representation
Pandas Table Tooltip is a Python librarythat only adds index and column tooltips to Pandas tables on Jupyter.
- Host: GitHub
- URL: https://github.com/simon-ritchie/pandas-table-tooltip
- Owner: simon-ritchie
- License: mit
- Created: 2019-07-26T10:57:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-27T03:48:17.000Z (almost 7 years ago)
- Last Synced: 2025-12-31T15:22:34.471Z (7 months ago)
- Topics: pandas, python
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pandas Table Tooltip
Pandas Table Tooltip is a Python librarythat only adds index and column tooltips to Pandas tables on Jupyter.
It is useful to understand the values of column and index when displaying a long table on Jupyter.

# Intalling
```
$ pip install pandastabletooltip
```
# Usage
```py
from pandastabletooltip import make_table_html_with_tooltip
import pandas as pd
df = pd.DataFrame(data=[{
'a': 100,
'b': 200,
'c': 300,
}, {
'a': 1000,
'b': 2000,
'c': 3000,
}, {
'a': 10000,
'b': 20000,
'c': 30000,
}])
make_table_html_with_tooltip(df=df)
```
And then, the table displayed by the above function will show index and column values when mouse over:
