如何在 R 的 forest_model 中格式化 x 轴上的中断
How to format the breaks on x-axis in forest_model in R
我正在使用 R
中的 forestmodel 包中的 forest_model 函数
我不知道如何调整
上中断的大小和字体
x轴,因为这似乎不是函数中的参数(forest_model),也似乎不是可以指定的东西
在面板参数中...
forest_model(fit,
panels = mypanels)
我希望中断显示为粗体和 12 号字体。
非常感谢任何帮助。
注意 forest_model
函数的输出是 ggplot 对象,可以用标准的 ggplot 方式进行调整。
我使用包forestmodel提供的示例。
library(forestmodel)
library(survival)
library(dplyr)
pretty_lung <- lung %>%
transmute(time,
status,
Age = age,
Sex = factor(sex, labels = c("Male", "Female")),
ECOG = factor(lung$ph.ecog),
`Meal Cal` = meal.cal)
forest_model(coxph(Surv(time, status) ~ ., pretty_lung)) +
theme(axis.text.x = element_text(size=12, face="bold"))
我正在使用 R
中的 forestmodel 包中的 forest_model 函数
我不知道如何调整
上中断的大小和字体
x轴,因为这似乎不是函数中的参数(forest_model),也似乎不是可以指定的东西
在面板参数中...
forest_model(fit,
panels = mypanels)
我希望中断显示为粗体和 12 号字体。
非常感谢任何帮助。
注意 forest_model
函数的输出是 ggplot 对象,可以用标准的 ggplot 方式进行调整。
我使用包forestmodel提供的示例。
library(forestmodel)
library(survival)
library(dplyr)
pretty_lung <- lung %>%
transmute(time,
status,
Age = age,
Sex = factor(sex, labels = c("Male", "Female")),
ECOG = factor(lung$ph.ecog),
`Meal Cal` = meal.cal)
forest_model(coxph(Surv(time, status) ~ ., pretty_lung)) +
theme(axis.text.x = element_text(size=12, face="bold"))