https://github.com/banjtheman/fancylit
Fancylit is a python module that contains pre-packaged Streamlit code to render fancy visualizations, run modeling tasks, and data exploration
https://github.com/banjtheman/fancylit
machine-learning python streamlit visualization yellowbrick
Last synced: 12 months ago
JSON representation
Fancylit is a python module that contains pre-packaged Streamlit code to render fancy visualizations, run modeling tasks, and data exploration
- Host: GitHub
- URL: https://github.com/banjtheman/fancylit
- Owner: banjtheman
- License: apache-2.0
- Created: 2021-09-13T23:50:30.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T00:19:52.000Z (over 4 years ago)
- Last Synced: 2025-06-14T15:04:19.723Z (about 1 year ago)
- Topics: machine-learning, python, streamlit, visualization, yellowbrick
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fancylit
Fancylit is a python module that contains pre-packaged Streamlit code to render fancy visualizations, run modeling tasks, and data exploration
## Installation
```
pip install fancylit
```
## Quick Start
Fancylit makes it incredibly easy to build fancy interactive apps:
```python
import streamlit as st
import fancylit
df = pd.read_csv("datasets/iris.csv")
st.write("Bar Chart Example")
fancylit.viz.charts.bar_chart(df)
```

See more examples here: https://share.streamlit.io/banjtheman/fancylit/main/example_app.py
## Hacktoberfest 2021

There are plenty of modules to create, or update all detailed in the [issues page](https://github.com/banjtheman/fancylit/issues). Complete 4 PRs during October to win a free t-shirt.
To learn more, check out their [FAQ](https://hacktoberfest.digitalocean.com/resources/participation)
If you want to build right away you can use [Gitpod](https://gitpod.io/) which provides a developer environment ready to begin coding. Simply click the button below to begin building.
[](https://gitpod.io/#https://github.com/banjtheman/fancylit/)