R 如何在coefplot::coefplot.default()中设置标题字体大小?

R 如何在coefplot::coefplot.default()中设置标题字体大小?,r,coefplot,R,Coefplot,使用库(coefplot),以下代码创建系数图 library(dplyr) library(coefplot) set.seed(123) x1 <- sample(1:8,10000,replace=TRUE) x2 <- sample(1:6,10000,replace=TRUE) x3 <- sample(1:7,10000,replace=TRUE) y <- sample(0:1,10000,replace=TRUE) df <- as.data

使用
库(coefplot)
,以下代码创建系数图

library(dplyr)
library(coefplot)

set.seed(123)

x1 <- sample(1:8,10000,replace=TRUE)
x2 <- sample(1:6,10000,replace=TRUE)
x3 <- sample(1:7,10000,replace=TRUE)
y  <- sample(0:1,10000,replace=TRUE)

df <- as.data.frame(cbind(x1,x2,x3, y))

glm(y ~ x1 + x2 + x3, family = "binomial", data = df) %>%
  coefplot::coefplot.glm(., title = "My title", xlab = "Coefficient values", ylab = NULL, intercept = FALSE)
库(dplyr)
图书馆(coefplot)
种子集(123)
x1