Data Visualization
Declarative Visualization
★ 4.5
Statistical Data Visualization
★ 4.7
pip install altairpip install seabornpip install altairpip install seabornData engineers use Altair for rapid exploratory visualization in Jupyter notebooks. Its declarative grammar lets you add interactivity — tooltips, selections, linked charts — with just a few extra lines, making it easy to build exploratory dashboards from pipeline outputs without leaving the Python environment.
Python data engineers use Seaborn to quickly visualize relationships in pipeline data during EDA. A single `sns.heatmap(df.corr())` or `sns.pairplot(df)` call reveals correlation structure and feature distributions that guide transformation decisions — making Seaborn the standard for exploratory data analysis in Jupyter notebooks.
Individual Tool Pages