jupyter-summarytools
summarytools in jupyter notebook
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.3%) to scientific vocabulary
Repository
summarytools in jupyter notebook
Basic Info
- Host: GitHub
- Owner: 6chaoran
- License: apache-2.0
- Language: Jupyter Notebook
- Default Branch: master
- Size: 7.73 MB
Statistics
- Stars: 111
- Watchers: 2
- Forks: 10
- Open Issues: 0
- Releases: 2
Metadata Files
README.md
DataFrame Summary Tools in Jupyter Notebook
This is python version of summarytools, which is used to generate standardized and comprehensive summary of dataframe in Jupyter Notebooks.
The idea is originated from the summarytools R package (https://github.com/dcomtois/summarytools).
- Only
dfSummaryfunction is made available for now - Added two html widgets to avoid displaying lengthy content
Installation
pip install summarytools
Dependencies
- python 3.6+
- pandas >= 1.4.0
Quick Start
the quick-start notebook is available in here or
out-of-box dfSummary function will generate a HTML based data frame summary.
py
import pandas as pd
from summarytools import dfSummary
titanic = pd.read_csv('./data/titanic.csv')
dfSummary(titanic)

collapsible summary
py
import pandas as pd
from summarytools import dfSummary
titanic = pd.read_csv('./data/titanic.csv')
dfSummary(titanic, is_collapsible = True)

tabbed summary
```py import pandas as pd from summarytools import dfSummary, tabset titanic = pd.readcsv('./data/titanic.csv') vaccine = pd.readcsv('./data/countryvaccinations.csv') vaccine['date'] = pd.todatetime(vaccine['date'])
tabset({ 'titanic': dfSummary(titanic).render(), 'vaccine': dfSummary(vaccine).render()}) ```

Export notebook as HTML
when export jupyter notebook to HTML, make sure Export Embedded HTML
extension is installed and enabled.

Using the following bash command to retain the data frame summary in exported HTML.
bash
jupyter nbconvert --to html_embed path/of/your/notebook.ipynb
Stargazers over time
Owner
- Name: Chaoran Liu
- Login: 6chaoran
- Kind: user
- Location: Singapore
- Repositories: 8
- Profile: https://github.com/6chaoran
machine learning enthusiast / data science practitioner / learning data science from everywhere
GitHub Events
Total
- Watch event: 17
- Fork event: 2
Last Year
- Watch event: 17
- Fork event: 2
Committers
Last synced: over 3 years ago
All Time
- Total Commits: 17
- Total Committers: 2
- Avg Commits per committer: 8.5
- Development Distribution Score (DDS): 0.294
Top Committers
| Name | Commits | |
|---|---|---|
| 6chaoran | 6****n@g****m | 12 |
| 6chaoran | c****u@i****m | 5 |
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 7
- Total pull requests: 0
- Average time to close issues: 3 months
- Average time to close pull requests: N/A
- Total issue authors: 6
- Total pull request authors: 0
- Average comments per issue: 3.71
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- GegznaV (2)
- hectormz (1)
- Buckeyes2019 (1)
- caroheymes (1)
- eotf (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 3
-
Total downloads:
- pypi 4,226 last-month
-
Total dependent packages: 0
(may contain duplicates) -
Total dependent repositories: 4
(may contain duplicates) - Total versions: 15
- Total maintainers: 2
pypi.org: summarytools
summarytools in jupyter notebook
- Homepage: https://github.com/6chaoran/jupyter-summarytools
- Documentation: https://summarytools.readthedocs.io/
- License: MIT License
-
Latest release: 0.3.0
published about 2 years ago
Rankings
Maintainers (2)
pypi.org: notebook-summarytools
summarytools in jupyter notebook
- Homepage: https://github.com/6chaoran/jupyter-summarytools
- Documentation: https://notebook-summarytools.readthedocs.io/
- License: MIT License
- Status: removed
-
Latest release: 0.1.0
published over 3 years ago
Rankings
pypi.org: jupyter-summarytools
summarytools in jupyter notebook
- Homepage: https://github.com/6chaoran/jupyter-summarytools
- Documentation: https://jupyter-summarytools.readthedocs.io/
- License: MIT License
-
Latest release: 0.2.3
published over 3 years ago
Rankings
Maintainers (1)
Dependencies
- ipython ==7.20.0
- matplotlib ==3.3.0
- numpy ==1.18.5
- pandas ==1.1.1
- actions/checkout v3 composite
- actions/setup-python v3 composite
- ipython >=7.20.0
- matplotlib >=3.3.0
- numpy >=1.18.5
- pandas >=1.4.0