热门角色不仅是灵感来源,更是你的效率助手。通过精挑细选的角色提示词,你可以快速生成高质量内容、提升创作灵感,并找到最契合你需求的解决方案。让创作更轻松,让价值更直接!
我们根据不同用户需求,持续更新角色库,让你总能找到合适的灵感入口。
本提示词专门用于生成动物健康监测相关的可视化图表和信息图,能够将复杂的动物健康数据转化为直观易懂的视觉内容。通过输入动物类型、健康指标和监测目标等关键参数,系统会自动创建专业的健康监测图表,支持兽医诊断、科研展示和教育培训等多种应用场景。该工具能够显著提升动物健康数据的传达效果,帮助用户更好地理解和分析动物健康状况,促进动物健康管理的科学决策。
图表标题:猫科动物健康监测仪表板(疾病诊断支持)
数据可视化:
总体说明
图1:血液指标参考区间比较(条形+点标)
const labData = [
// 示例结构(请填入实际值与参考区间)
// { item: 'RBC', value: null, refMin: null, refMax: null },
// { item: 'HCT', value: null, refMin: null, refMax: null },
// { item: 'ALT', value: null, refMin: null, refMax: null },
// ...
];
const optionLab = {
title: { text: '血液指标 vs 参考区间(猫)' },
grid: { left: 140, right: 40, top: 40, bottom: 40 },
xAxis: { type: 'value', name: '数值', splitLine: { show: true } },
yAxis: {
type: 'category',
data: labData.map(d => d.item),
name: '项目'
},
tooltip: {
trigger: 'axis',
axisPointer: { type: 'shadow' },
formatter: params => {
const p = params;
// 展示参考区间与实测值
return `${p[0].axisValue}<br/>参考: ${p[0].data[0]} - ${p[0].data[1]}<br/>实测: ${p[1]?.data ?? '缺失'}`;
}
},
legend: { data: ['参考区间', '实测值'] },
series: [
{
name: '参考区间',
type: 'custom',
renderItem: (params, api) => {
const categoryIndex = api.value(2);
const refMin = api.value(0);
const refMax = api.value(1);
const start = api.coord([refMin, categoryIndex]);
const end = api.coord([refMax, categoryIndex]);
const height = 20;
return {
type: 'rect',
shape: { x: start[0], y: start[1] - height / 2, width: end[0] - start[0], height },
style: { fill: '#DDF4CC' }
};
},
encode: { x: [0, 1], y: 2 },
data: labData.map((d, i) => [d.refMin, d.refMax, i])
},
{
name: '实测值',
type: 'scatter',
symbolSize: 10,
itemStyle: {
color: params => {
const idx = params.dataIndex;
const v = labData[idx].value;
const min = labData[idx].refMin;
const max = labData[idx].refMax;
if (v == null) return '#BFBFBF';
if (min == null || max == null) return '#5B8FF9'; // 未提供参考区间
const margin = 0.05 * (max - min); // 接近阈值±5%
if (v >= min && v <= max) {
if (v - min < margin || max - v < margin) return '#FB8C00'; // 接近边界
return '#52C41A'; // 正常
}
return '#E53935'; // 异常
}
},
encode: { x: 0, y: 1 },
data: labData.map((d, i) => [d.value, i])
}
]
};
图2:体温时序趋势(折线+正常带)
const tempData = [
// { date: '2025-10-01 09:00', temperature: null },
// ...
];
const optionTemp = {
title: { text: '体温趋势(猫)' },
xAxis: { type: 'time' },
yAxis: { type: 'value', name: '°C' },
tooltip: { trigger: 'axis' },
series: [
{
name: '体温',
type: 'line',
smooth: true,
showSymbol: false,
data: tempData.map(d => [d.date, d.temperature]),
markArea: {
itemStyle: { color: 'rgba(82,196,26,0.15)' },
data: [[{ yAxis: 37.8 }, { yAxis: 39.2 }]]
},
markLine: {
lineStyle: { color: '#E53935' },
data: [{ yAxis: 39.5, name: '高热警戒' }, { yAxis: 37.5, name: '低温警戒' }]
}
}
]
};
图3:体重变化与周/月趋势(折线+百分比变动)
const weightData = [
// { date: '2025-09-01', weightKg: null },
// ...
];
function pctChangeSeries(data) {
if (!data.length) return [];
const base = data[0].weightKg;
return data.map(d => [d.date, base ? ((d.weightKg - base) / base) * 100 : null]);
}
const optionWeight = {
title: { text: '体重变化(相对基线%)' },
xAxis: { type: 'time' },
yAxis: { type: 'value', name: '%', axisLabel: { formatter: val => `${val.toFixed(0)}%` } },
tooltip: { trigger: 'axis' },
series: [
{
name: '相对变化',
type: 'line',
smooth: true,
data: pctChangeSeries(weightData),
markLine: {
lineStyle: { color: '#FB8C00' },
data: [{ yAxis: -5, name: '−5%警示' }, { yAxis: -10, name: '−10%高警' }]
}
}
]
};
图4:食欲与行为表现日历热图(0–3评分)
const behaviorMetrics = ['食欲', '饮水', '活动', '社交', '如厕', '精神'];
const behaviorData = [
// { date: '2025-10-01', metric: '食欲', score: null },
// ...
];
const optionBehavior = {
title: { text: '食欲与行为表现(每日评分热图)' },
grid: { left: 100, right: 40, top: 40, bottom: 60 },
xAxis: { type: 'category', data: [...new Set(behaviorData.map(d => d.date))] },
yAxis: { type: 'category', data: behaviorMetrics },
tooltip: {
position: 'top',
formatter: p => `${p.value[0]} | ${p.value[1]}:评分 ${p.value[2]}`
},
visualMap: {
min: 0, max: 3, orient: 'horizontal', left: 'center', bottom: 10,
inRange: { color: ['#E53935', '#FB8C00', '#FFD54F', '#52C41A'] }
},
series: [{
name: '评分',
type: 'heatmap',
data: behaviorData.map(d => [d.date, d.metric, d.score]),
emphasis: { itemStyle: { shadowBlur: 10, shadowColor: 'rgba(0,0,0,0.5)' } }
}]
};
图5:综合风险信号(仪表盘/指示器)
const risk = { alertScore: null, alertCount: null }; // 请填充
const optionRisk = {
title: { text: '综合风险信号' },
series: [
{
name: '风险评分',
type: 'gauge',
min: 0, max: 100,
axisLine: {
lineStyle: {
width: 12,
color: [
[0.4, '#52C41A'], // 0–40 低
[0.7, '#FB8C00'], // 41–70 中
[1.0, '#E53935'] // 71–100 高
]
}
},
detail: { formatter: v => `评分 ${v ?? '—'}` },
data: [{ value: risk.alertScore }]
}
]
};
关键指标说明:
趋势分析:
专业建议:
注意事项:
如需,我可以将上述模板转换为您指定的工具(ECharts/Vega-Lite/Excel可视化),或接收您的实际数据后生成完整图表与分析。
图表标题:实验动物健康监测仪表盘(科研数据收集)
数据可视化:
多面板时序折线图(个体/批次)
分布对比箱线图(群体层面)
预警热图(动物×时间)
相关性散点矩阵(探索性分析)
血液指标概览图(雷达图或分组条形图)
关键指标说明:
趋势分析:
专业建议:
注意事项:
如需,我可以根据您具体的物种、品系、参考区间和采样频率,生成可直接在常用工具(如Vega-Lite或ECharts)使用的配置文件与示例模板。
图表标题:野生动物健康监测教学模板(体温、心率、活动水平、行为表现)
数据可视化: 以下为用于教育培训的通用可视化模板(示意图,未包含实际数据)。可直接用于演示或作为填充数据的图表框架。建议在导入真实数据前,先确定具体物种及其参考基线范围。
[体温] | 0% ──────┬──────┬────── 100% |
低 正常 高
(绿色区间定义:按物种基线)
[心率] | 0% ──────┬──────┬────── 100% |
低 正常 高
(绿色区间定义:按物种基线)
[活动水平] | 0% ──────┬──────┬────── 100% |
低 正常 高
(绿色区间定义:按日节律/物种习性)
[行为表现] | 0% ──────┬──────┬────── 100% |
受限 正常 异常
(绿色区间定义:按物种行为词典)
使用方法:
体温(折线):日期→ │────────趋势轨迹占位────────│
心率(折线):日期→ │────────趋势轨迹占位────────│
活动水平(日内热图):
时段 0 1 2 3 4 5 6 7 8 9 10 11 12 ... 23
强度 ░ ░ ▒ ▓ ▓ ▒ ░ ... (用浅→深显示活动强度,填入数据后渲染)
使用方法:
时间→ |——社交——|—觅食—|——休息——|—警戒—|——探索——|(示意)
密度/持续时长以条形长度或颜色深度表示;异常事件以标记突出显示。
使用方法:
关键指标说明:
趋势分析:
专业建议:
注意事项:
将体检与化验结果转为一页图解,突出异常指标与趋势,清晰说明病情与护理计划,缩短沟通时间并提升复诊率。
为大规模群体生成批次健康看板,聚焦体温、采食、发病率等关键指标,及时预警并制定免疫与饲养调整方案,降低损耗。
把监测数据转为规范图表与指标说明,用于论文插图、学术报告与项目答辩,清晰呈现组间差异与趋势结论。
将繁杂的动物健康数据在几分钟内转化为可被宠物主人、科研评审、养殖管理层和课堂学生快速理解的图表与信息图,显著提升沟通效率与决策质量。通过智能选图、跨物种标准化解读与趋势洞察,帮助用户从数据看出问题、找到原因、提出行动建议,并可生成品牌风格的可分享成果,用于门诊说明、项目汇报、培训教材与监测看板。支持快速试用,产出即专业,升级版本提供批量生成、模板保存与团队协作,进一步提升工作效率与外观一致性。
将模板生成的提示词复制粘贴到您常用的 Chat 应用(如 ChatGPT、Claude 等),即可直接对话使用,无需额外开发。适合个人快速体验和轻量使用场景。
把提示词模板转化为 API,您的程序可任意修改模板参数,通过接口直接调用,轻松实现自动化与批量处理。适合开发者集成与业务系统嵌入。
在 MCP client 中配置对应的 server 地址,让您的 AI 应用自动调用提示词模板。适合高级用户和团队协作,让提示词在不同 AI 工具间无缝衔接。
免费获取高级提示词-优惠即将到期