Meta-Analysis Forest Plotter — 元分析森林图绘制器
v1.0.0用于创建森林图(forest plots)进行meta分析,跨研究可视化效应大小,或生成发表级别的meta分析图形。生成高质量的森林图,包括置信区间、异质性指标和子组分析。
运行时依赖
安装命令
点击复制技能文档
Meta-Analysis Forest Plot Generator 为系统性综述和meta分析创建具有可定制样式和统计注释的出版级森林图。 快速开始 from scripts.forest_plotter import ForestPlotter plotter = ForestPlotter() 生成森林图 plot = plotter.create_plot( studies=["Study A", "Study B", "Study C"], effect_sizes=[1.2, 0.8, 1.5], ci_lower=[0.9, 0.5, 1.1], ci_upper=[1.5, 1.1, 1.9], overall_effect=1.15 )
核心功能
- 基本森林图
- 统计注释
- 子组分析
- 自定义样式
CLI 用法 从 CSV 数据 python scripts/forest_plotter.py \ --input meta_analysis_data.csv \ --effect-col OR \ --output forest_plot.pdf 带有自定义样式 python scripts/forest_plotter.py \ --input data.csv \ --style lancet \ --width 8 --height 10
输出格式 PDF:出版质量,矢量图形 PNG:网页/演示,300 DPI SVG:可在Illustrator/Inkscape中编辑 TIFF:期刊提交格式
参考 references/forest-plot-styles.md - 期刊特定格式示例 /sample-plots/ - 示例输出
技能 ID:207 | 版本:1.0 | 许可:MIT GitHub API CLI