Install
openclaw skills install data-visualization-studioCreate interactive and static data visualizations from datasets. Supports charts, graphs, dashboards, and statistical plots with multiple output formats (PNG, SVG, HTML, PDF).
openclaw skills install data-visualization-studioCreate professional data visualizations from raw data or existing datasets.
# Example: Create a simple bar chart
import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_csv('data.csv')
plt.bar(data['category'], data['values'])
plt.savefig('chart.png', dpi=300, bbox_inches='tight')
# Example: Create interactive plot with Plotly
import plotly.express as px
df = pd.read_csv('data.csv')
fig = px.scatter(df, x='x_column', y='y_column', color='category')
fig.write_html('dashboard.html')
For detailed examples and advanced usage patterns, see the bundled reference files:
references/chart-types.md - Complete catalog of supported chart typesreferences/styling-guide.md - Customization and branding guidelinesreferences/performance.md - Optimization for large datasets