jupyter-summarytools

summarytools in jupyter notebook

https://github.com/6chaoran/jupyter-summarytools

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
Last synced: 11 months ago · JSON representation

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
Created over 5 years ago · Last pushed almost 2 years ago
Metadata Files
Readme License

README.md

GitHub

PyPI PyPI - Status PyPI - Downloads GitHub last commit

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

Installation

pip install summarytools

Dependencies

  1. python 3.6+
  2. pandas >= 1.4.0

Quick Start

the quick-start notebook is available in here or Open In Colab

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

Stargazers over time

Owner

  • Name: Chaoran Liu
  • Login: 6chaoran
  • Kind: user
  • Location: Singapore

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 Email 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

  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Downloads: 3,979 Last month
Rankings
Downloads: 7.1%
Stargazers count: 9.0%
Dependent repos count: 9.0%
Average: 9.5%
Dependent packages count: 10.1%
Forks count: 12.6%
Maintainers (2)
Last synced: 11 months ago
pypi.org: notebook-summarytools

summarytools in jupyter notebook

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 4.8%
Dependent repos count: 6.3%
Average: 12.0%
Forks count: 17.7%
Stargazers count: 19.3%
Last synced: 12 months ago
pypi.org: jupyter-summarytools

summarytools in jupyter notebook

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 247 Last month
Rankings
Stargazers count: 9.0%
Dependent packages count: 10.1%
Forks count: 12.6%
Average: 13.6%
Downloads: 14.6%
Dependent repos count: 21.6%
Maintainers (1)
Last synced: 12 months ago

Dependencies

requirements.txt pypi
  • ipython ==7.20.0
  • matplotlib ==3.3.0
  • numpy ==1.18.5
  • pandas ==1.1.1
.github/workflows/python-package.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v3 composite
setup.py pypi
  • ipython >=7.20.0
  • matplotlib >=3.3.0
  • numpy >=1.18.5
  • pandas >=1.4.0
pyproject.toml pypi