Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Dabestr | 180 | 2 years ago | 8 | July 13, 2020 | 22 | other | R | |||
Data Analysis with Bootstrap Estimation in R | ||||||||||
Esparto | 77 | 11 days ago | 28 | June 29, 2022 | mit | Python | ||||
Data driven report builder for the Python data ecosystem. | ||||||||||
How To Stock | 5 | 2 days ago | Python | |||||||
A web app that can teach users how the stock market works, trade virtual stocks, and view predictions of stocks | ||||||||||
Data_visualizer | 3 | 3 years ago | mit | HTML | ||||||
A webapp to visualize and filter csv files. | ||||||||||
Bootstrap | 2 | 3 years ago | mit | Jupyter Notebook | ||||||
Basic bootstrapping for estimation statistics. | ||||||||||
Spotlight | 2 | 3 years ago | gpl-3.0 | JavaScript | ||||||
Spotlight is a Spotify dashboard that allows user to visualize his listening habits. | ||||||||||
22 Banco | 2 | 9 months ago | Python | |||||||
Ferramentas de Trabalho utilizadas, projetos e links de aprendizado. |
esparto is a Python library for building data driven reports with content from popular analytics packages.
import esparto as es
# Do some analysis
pandas_df = ...
plot_fig = ...
markdown_str = ...
# Create a page
page = es.Page(title="My Report")
# Add content
page["Data Analysis"]["Plot"] = plot_fig
page["Data Analysis"]["Data"] = pandas_df
page["Data Analysis"]["Notes"] = markdown_str
# Save to HTML or PDF
page.save_html("my-report.html")
page.save_pdf("my-report.pdf")
esparto is available from PyPI and Conda:
pip install esparto
conda install esparto -c conda-forge
poetry add esparto
User guides, documentation, and examples are available on the project home page.
Feedback and contributions are welcome - please raise an issue or pull request on GitHub.
Iris Report - Webpage | PDF | Notebook