Data Visualization
2026-03-31
新闻来源:网淘吧
围观:11
电脑广告
手机广告
数据可视化
通过inference.sh命令行界面创建清晰、有效的数据可视化。
快速开始
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate a chart with Python
infsh app run infsh/python-executor --input '{
"code": "import matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.use(\"Agg\")\n\nmonths = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\"]\nrevenue = [42, 48, 55, 61, 72, 89]\n\nfig, ax = plt.subplots(figsize=(10, 6))\nax.bar(months, revenue, color=\"#3b82f6\", width=0.6)\nax.set_ylabel(\"Revenue ($K)\")\nax.set_title(\"Monthly Revenue Growth\", fontweight=\"bold\")\nfor i, v in enumerate(revenue):\n ax.text(i, v + 1, f\"${v}K\", ha=\"center\", fontweight=\"bold\")\nplt.tight_layout()\nplt.savefig(\"revenue.png\", dpi=150)\nprint(\"Saved\")"
}'
安装说明:该安装脚本仅会检测您的操作系统/架构,从
dist.inference.sh下载匹配的二进制文件,并验证其SHA-256校验和。无需提升权限或后台进程。也可进行手动安装与验证。图表选择指南
哪种数据用哪种图表?
数据关系
| 最佳图表 | 切勿使用 | 随时间变化 |
|---|---|---|
| 折线图 | 饼图 | 类别比较 |
| 条形图(类别多时用横向条形图) | Bar chart (horizontal for many categories) | 折线图 |
| 部分与整体 | 堆叠条形图、树状图 | 饼图(虽有争议,但条形图通常更清晰) |
| 分布 | 直方图、箱线图 | 条形图 |
| 相关性 | 散点图 | 条形图 |
| 排名 | 水平条形图 | 垂直条形图、饼图 |
| 地理 | 分级统计地图 | 条形图 |
| 时间序列构成 | 堆叠面积图 | 多饼图 |
| 单一指标 | 大数字(关键绩效指标卡片) | 任何图表(过于复杂) |
| 流程 | 桑基图 | 条形图 |
饼图问题
饼图几乎总是错误的选择:
❌ Pie chart problems:
- Hard to compare similar-sized slices
- Can't show more than 5-6 categories
- 3D pie charts are always wrong
- Impossible to read exact values
✅ Use instead:
- Horizontal bar chart (easy comparison)
- Stacked bar (part of whole)
- Treemap (hierarchical parts)
- Just a table (if precision matters)
设计规则
坐标轴
| 规则 | 原因 |
|---|---|
| Y轴始终从0开始(条形图) | 防止误导性视觉效果 |
| 折线图可以从0以上开始 | 当展示变化而非绝对值时 |
| 标注两个坐标轴 | 读者不应猜测单位 |
| 移除不必要的网格线 | 减少视觉干扰 |
| 使用水平标签 | 垂直文本难以阅读 |
| 按数值排序条形图 | 除非有特定原因,否则不要按字母顺序排列 |
色彩
| 原则 | 应用 |
|---|---|
| 最多使用5-7种颜色每张图表 | 内容过多会导致难以阅读 |
| 突出显示一个重点 | 其他内容灰化处理,聚焦点着色突出 |
| 顺序色系适用于表示量级 | 低值用浅色,高值用深色 |
| 发散色系适用于表示正负值 | 红色←中性色→蓝色 |
| 分类色系适用于表示分组 | 采用不同色调,保持相近亮度 |
| 色盲友好设计 | 避免仅用红绿配色——可添加形状或标签辅助区分 |
| 保持色彩含义一致性 | 若蓝色代表营收,则所有场景统一用蓝色表示 |
优质配色方案
# Sequential (low to high)
sequential = ["#eff6ff", "#bfdbfe", "#60a5fa", "#2563eb", "#1d4ed8"]
# Diverging (negative to positive)
diverging = ["#ef4444", "#f87171", "#d1d5db", "#34d399", "#10b981"]
# Categorical (distinct groups)
categorical = ["#3b82f6", "#f59e0b", "#10b981", "#8b5cf6", "#ef4444"]
# Colorblind-safe
cb_safe = ["#0077BB", "#33BBEE", "#009988", "#EE7733", "#CC3311"]
文本与标签设计
| 元素 | 规则 |
|---|---|
| 标题 | 应陈述核心洞察,而非数据类型。例如使用"第二季度营收翻倍",而非"第二季度营收图表" |
| 标注说明 | 直接在图表上标注关键数据点 |
| 图例 | 尽量避免使用——直接在图表线条/条形上标注 |
| 字体大小 | 最小12像素,演示文稿建议14像素以上 |
| 数字格式 | 大数字使用K、M、B表示(例如42K,而非42,000) |
| 数据标签 | 当具体数值重要时,添加到条形/数据点上 |
图表配方
折线图(时间序列)
infsh app run infsh/python-executor --input '{
"code": "import matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.use(\"Agg\")\n\nfig, ax = plt.subplots(figsize=(12, 6))\nfig.patch.set_facecolor(\"white\")\n\nmonths = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"]\nthis_year = [120, 135, 148, 162, 178, 195, 210, 228, 245, 268, 290, 320]\nlast_year = [95, 102, 108, 115, 122, 130, 138, 145, 155, 165, 178, 190]\n\nax.plot(months, this_year, color=\"#3b82f6\", linewidth=2.5, marker=\"o\", markersize=6, label=\"2024\")\nax.plot(months, last_year, color=\"#94a3b8\", linewidth=2, linestyle=\"--\", label=\"2023\")\nax.fill_between(range(len(months)), last_year, this_year, alpha=0.1, color=\"#3b82f6\")\n\nax.annotate(\"$320K\", xy=(11, 320), fontsize=14, fontweight=\"bold\", color=\"#3b82f6\")\nax.annotate(\"$190K\", xy=(11, 190), fontsize=12, color=\"#94a3b8\")\n\nax.set_ylabel(\"Revenue ($K)\", fontsize=12)\nax.set_title(\"Revenue grew 68% year-over-year\", fontsize=16, fontweight=\"bold\")\nax.legend(fontsize=12)\nax.spines[\"top\"].set_visible(False)\nax.spines[\"right\"].set_visible(False)\nax.grid(axis=\"y\", alpha=0.3)\nplt.tight_layout()\nplt.savefig(\"line-chart.png\", dpi=150)\nprint(\"Saved\")"
}'
水平条形图(对比)
infsh app run infsh/python-executor --input '{
"code": "import matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.use(\"Agg\")\n\nfig, ax = plt.subplots(figsize=(10, 6))\n\ncategories = [\"Email\", \"Social\", \"SEO\", \"Paid Ads\", \"Referral\", \"Direct\"]\nvalues = [12, 18, 35, 22, 8, 5]\ncolors = [\"#94a3b8\"] * len(values)\ncolors[2] = \"#3b82f6\" # Highlight the winner\n\n# Sort by value\nsorted_pairs = sorted(zip(values, categories, colors))\nvalues, categories, colors = zip(*sorted_pairs)\n\nax.barh(categories, values, color=colors, height=0.6)\nfor i, v in enumerate(values):\n ax.text(v + 0.5, i, f\"{v}%\", va=\"center\", fontsize=12, fontweight=\"bold\")\n\nax.set_xlabel(\"% of Total Traffic\", fontsize=12)\nax.set_title(\"SEO drives the most traffic\", fontsize=16, fontweight=\"bold\")\nax.spines[\"top\"].set_visible(False)\nax.spines[\"right\"].set_visible(False)\nplt.tight_layout()\nplt.savefig(\"bar-chart.png\", dpi=150)\nprint(\"Saved\")"
}'
关键绩效指标/大数字卡片
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"display:flex;gap:20px;padding:20px;background:white;font-family:system-ui\"><div style=\"background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:24px;width:200px;text-align:center\"><p style=\"color:#64748b;font-size:14px;margin:0\">Monthly Revenue</p><p style=\"font-size:48px;font-weight:900;margin:8px 0;color:#1e293b\">$89K</p><p style=\"color:#22c55e;font-size:14px;margin:0\">↑ 23% vs last month</p></div><div style=\"background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:24px;width:200px;text-align:center\"><p style=\"color:#64748b;font-size:14px;margin:0\">Active Users</p><p style=\"font-size:48px;font-weight:900;margin:8px 0;color:#1e293b\">12.4K</p><p style=\"color:#22c55e;font-size:14px;margin:0\">↑ 8% vs last month</p></div><div style=\"background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:24px;width:200px;text-align:center\"><p style=\"color:#64748b;font-size:14px;margin:0\">Churn Rate</p><p style=\"font-size:48px;font-weight:900;margin:8px 0;color:#1e293b\">2.1%</p><p style=\"color:#ef4444;font-size:14px;margin:0\">↑ 0.3% vs last month</p></div></div>"
}'
热力图
infsh app run infsh/python-executor --input '{
"code": "import matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib\nmatplotlib.use(\"Agg\")\n\nfig, ax = plt.subplots(figsize=(10, 6))\n\ndays = [\"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\", \"Sun\"]\nhours = [\"9AM\", \"10AM\", \"11AM\", \"12PM\", \"1PM\", \"2PM\", \"3PM\", \"4PM\", \"5PM\"]\ndata = np.random.randint(10, 100, size=(len(hours), len(days)))\ndata[2][1] = 95 # Tuesday 11AM peak\ndata[2][3] = 88 # Thursday 11AM\n\nim = ax.imshow(data, cmap=\"Blues\", aspect=\"auto\")\nax.set_xticks(range(len(days)))\nax.set_yticks(range(len(hours)))\nax.set_xticklabels(days, fontsize=12)\nax.set_yticklabels(hours, fontsize=12)\n\nfor i in range(len(hours)):\n for j in range(len(days)):\n color = \"white\" if data[i][j] > 60 else \"black\"\n ax.text(j, i, data[i][j], ha=\"center\", va=\"center\", fontsize=10, color=color)\n\nax.set_title(\"Website Traffic by Day & Hour\", fontsize=16, fontweight=\"bold\")\nplt.colorbar(im, label=\"Visitors\")\nplt.tight_layout()\nplt.savefig(\"heatmap.png\", dpi=150)\nprint(\"Saved\")"
}'
用数据讲故事
叙事弧线
| 步骤 | 操作内容 | 示例 |
|---|---|---|
| 1.背景 | 设定读者需要了解的信息 | "我们每月跟踪客户获取成本" |
| 2.紧张感 | 展示问题或变化 | "第三季度用户获取成本增加了40%" |
| 3.解决方案 | 展示洞察或解决方案 | "但用户终身价值提升了80%,因此单位经济效益有所改善" |
标题作为洞察
❌ Descriptive titles (what the chart shows):
"Q3 Revenue by Product Line"
"Monthly Active Users 2024"
"Customer Satisfaction Survey Results"
✅ Insight titles (what the chart means):
"Enterprise product drives 70% of revenue growth"
"User growth accelerated after the free tier launch"
"Support response time is the #1 satisfaction driver"
标注技巧
| 技巧 | 使用时机 |
|---|---|
| 标注标签 | 突出特定数据点("峰值:32万") |
| 参考线 | 显示目标/基准("目标:10万") |
| 阴影区域 | 标记时间段("产品发布窗口") |
| 箭头 + 文字 | 引起对趋势变化的注意 |
| 前后对比线 | 展示事件影响 |
深色模式图表
infsh app run infsh/python-executor --input '{
"code": "import matplotlib.pyplot as plt\nimport matplotlib\nmatplotlib.use(\"Agg\")\n\n# Dark theme\nplt.rcParams.update({\n \"figure.facecolor\": \"#0f172a\",\n \"axes.facecolor\": \"#0f172a\",\n \"axes.edgecolor\": \"#334155\",\n \"axes.labelcolor\": \"white\",\n \"text.color\": \"white\",\n \"xtick.color\": \"white\",\n \"ytick.color\": \"white\",\n \"grid.color\": \"#1e293b\"\n})\n\nfig, ax = plt.subplots(figsize=(12, 6))\nmonths = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\"]\nvalues = [45, 52, 58, 72, 85, 98]\n\nax.plot(months, values, color=\"#818cf8\", linewidth=3, marker=\"o\", markersize=8)\nax.fill_between(range(len(months)), values, alpha=0.15, color=\"#818cf8\")\nax.set_title(\"MRR Growth: On track for $100K\", fontsize=18, fontweight=\"bold\")\nax.set_ylabel(\"MRR ($K)\", fontsize=13)\nax.spines[\"top\"].set_visible(False)\nax.spines[\"right\"].set_visible(False)\nax.grid(axis=\"y\", alpha=0.2)\n\nfor i, v in enumerate(values):\n ax.annotate(f\"${v}K\", (i, v), textcoords=\"offset points\", xytext=(0, 12), ha=\"center\", fontsize=11, fontweight=\"bold\")\n\nplt.tight_layout()\nplt.savefig(\"dark-chart.png\", dpi=150, facecolor=\"#0f172a\")\nprint(\"Saved\")"
}'
常见误区
| 误区 | 问题 | 解决方案 |
|---|---|---|
| 饼图 | 难以对比,经常产生误导 | 改用条形图或树状图 |
| Y轴起点非零(条形图) | 夸大差异 | 条形图从零开始,折线图可截断显示 |
| 颜色过多 | 视觉干扰,造成困惑 | 最多使用5-7种颜色,仅突出关键信息 |
| 无标题或使用通用标题 | 读者无法获取核心洞察 | 标题=核心结论,而非数据类型 |
| 3D图表 | 扭曲数据,显得不专业 | 始终使用2D图表 |
| 双Y轴 | 具有误导性,难以阅读 | 使用两个独立图表 |
| 条形图按字母顺序排序 | 隐藏了故事 | 按值排序(从大到小) |
| 坐标轴无标签 | 读者无法解读 | 始终标注单位 |
| 图表垃圾(装饰性元素) | 分散对数据的注意力 | 移除所有不传递信息的元素 |
| 仅使用红/绿色进行颜色编码 | 色盲用户无法阅读 | 使用形状、图案或色盲安全调色板 |
相关技能
npx skills add inference-sh/skills@pitch-deck-visuals
npx skills add inference-sh/skills@technical-blog-writing
npx skills add inference-sh/skills@competitor-teardown
浏览所有应用:infsh应用列表
文章底部电脑广告
手机广告位-内容正文底部



微信扫一扫,打赏作者吧~