Data Visualization
Built-in Visualizations
# Line chart
df.plot.line(x='date', y='revenue')
# Bar chart
df.plot.bar(x='category', y='count')
# Heatmap
df.plot.heatmap(values='metric')
`
## Supported Libraries
- Matplotlib
- Plotly
- Seaborn
- Altair
## See Also
- [Cells](/docs/notebooks/cells)
- [Sharing](/docs/notebooks/sharing)