avatar

目录
visualization widgets libraries

There are multiple different interactive visualization tools for python, which can help visualize data in interactive ways.

ipywidget

This library is only able to be used in jupyter notebook.
However, it provides tremendous functions.
The most advantage of this library is that you can link widgets together.
Here is the official documentation:

https://ipywidgets.readthedocs.io/en/latest/user_guide.html

streamlit

This library is super easy to use, and able to be run with a simple cmd command.
It is a very strong tool for data visualization or for making a simple app to use.
However, it can not link widgets together compared to ipywidget.
Here is the official documentation:
https://docs.streamlit.io/

github repo:
https://github.com/streamlit/streamlit

Good examples:
https://github.com/MarcSkovMadsen/awesome-streamlit

Other libraris

I have not tried other libraries but here is the list that can be tried:


评论