name: data-visualization-studio description: Create interactive and static data visualizations from datasets. Supports charts, graphs, dashboards, and statistical plots with multiple output formats (PNG, SVG, HTML, PDF).
Create 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')
小蔥技能站7w4.net每天更新,海量AI技能等你發現。
For detailed examples and advanced usage patterns, see the bundled reference files:
- references/chart-types.md - Complete catalog of supported chart types
- references/styling-guide.md - Customization and branding guidelines
- references/performance.md - Optimization for large datasets
這個資料視覺化工具整體質量中等偏上,文件說明詳細,提供了多種圖表型別和輸出格式的選擇,程式碼結構清晰易讀。主要優點是上手簡單、支援格式豐富;不足之處是功能比較基礎,缺少一些高階特性如動態圖表或即時資料展示,且缺少實際使用示例。對於日常簡單的資料視覺化需求夠用,但如果需要更專業的功能可能需要額外擴充套件。