年度归档: 2025 年

3 篇文章

thumbnail
R语言绘图(4)-森林图
所用R包: forestplot , forestploter 单列森林图 示例数据 #forestplot包森林图代码附注释 fig3_1<-forestplot(result1[,c(1,2,6,7)], mean=result1[,3], lower=result1[,4], upper=result1[…
thumbnail
R语言绘图(3)-金字塔条形图
所用R包: ggplot2 1.数据准备 # 定义一个函数,用于生成每个变量的绘图所用数据 generate_test_data <- function(variable) { # 统计每列中大于 1、2、3。。。。的个数 count_values <- function(column) { c( sum(column < 0, …