Bigdata viz
Skill MARUCIE/openclaw-foundry/web/public/packs/data-analyst/skills/bigdata-viz
The curated AI Agent skill marketplace — 37K+ vetted skills, S/A/B/C ratings, deploy anywhere
npx -y skills add MARUCIE/openclaw-foundry --skill bigdata-vizAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Data visualization toolkit for big data teams. Includes Matplotlib, Seaborn, Plotly for static and interactive charts. Use when creating dashboards, reports, or exploring data visually.
SKILL.md
3.1 KB, as published. Nobody here has run it
Big Data Visualization Toolkit
Overview
大数据团队可视化工具集,覆盖静态图表到交互式Dashboard。
Quick Reference
| 工具 | 类型 | 场景 |
|---|---|---|
| Matplotlib | 静态 | 论文、报告、精细控制 |
| Seaborn | 静态 | 统计图表、快速美观 |
| Plotly | 交互 | Dashboard、Web展示 |
选择指南
输出目标:
├── 报告/论文 → Matplotlib + Seaborn
├── 内部分享 → Plotly (交互)
├── Dashboard → Plotly + Dash
└── 实时监控 → Plotly + Streaming
子Skills
matplotlib/- 基础绑图库seaborn/- 统计可视化plotly/- 交互式图表scientific-visualization/- 科学可视化
常用模式
快速统计图 (Seaborn)
import seaborn as sns
import matplotlib.pyplot as plt
# 分布图
sns.histplot(data=df, x="value", hue="category")
# 相关性热力图
sns.heatmap(df.corr(), annot=True, cmap="coolwarm")
plt.savefig("report.png", dpi=300)
交互式Dashboard (Plotly)
import plotly.express as px
fig = px.scatter(
df, x="x", y="y",
color="category",
size="value",
hover_data=["name", "date"]
)
fig.write_html("dashboard.html")
大数据可视化技巧
# 采样可视化 (数据量大时)
sample = df.sample(n=10000)
px.scatter(sample, x="x", y="y")
# 聚合后可视化
agg = df.groupby("category").agg({"value": "mean"})
px.bar(agg, x=agg.index, y="value")
# 分位数可视化
px.box(df, x="category", y="value")
团队规范
- 颜色方案: 使用公司品牌色
- 字体大小: 标题14pt, 标签12pt
- 分辨率: 报告300dpi, Web 72dpi
- 格式: PDF用于报告, HTML用于分享
猪哥云-数据产品部 | 大数据团队专用
是什么
Big Data Visualization Toolkit 用来把 数据分析师 场景里的任务输入转成可执行的流程、检查清单和交付物。
Data visualization toolkit for big data teams. Includes Matplotlib, Seaborn, Plotly for static and interactive charts. Use when creating dashboards, reports, or exploring data visually.
它的价值在于让 数据AI职能线 在 Claude Code、Codex、Gemini、Hermes 或 OpenClaw 中复用同一套岗位能力,而不是依赖一次性的聊天提示词。
怎么用
- 明确当前任务目标、输入材料、约束和期望交付物,再加载
bigdata-viz。 - 按 skill 文档中的流程、检查清单或工具建议执行,优先复用仓库已有规范与真实命令。
- 把关键判断、风险、验证命令和产出路径记录到当前任务文档或交付说明中。
- 用最小可证明的检查确认结果有效;发现缺口时回到 skill 清单补齐。
架构图
flowchart LR
A[任务输入] --> B[加载 Big Data Visualization Toolkit]
B --> C[执行流程与检查清单]
C --> D[生成交付物与风险记录]
D --> E[验证结果并沉淀复盘]