1

Using the library(coefplot), the following code creates a coefficient plot

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)

I would like to change the font size of the title ("My title"). How do I achieve this - or does anyone have a workaround? (I have tried to specify the cex parameter without any effect.)

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.