Data Visualization
Interactive Web Visualizations
★ 4.6
Statistical Data Visualization
★ 4.7
pip install bokehpip install seabornpip install bokehpip install seabornData engineers use Bokeh to build interactive monitoring dashboards for pipeline metrics and data quality KPIs. A Bokeh Server app connects directly to a database, refreshes charts on a timer, and serves a browser-based dashboard — giving stakeholders a live view of pipeline health without requiring a separate BI tool.
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