R survminer::ggsurvplot distance between axis labels and axis title

Reproducible example: require(survival) require(survminer) require(ggplot2) set.seed(42) a <- c(32,291,545, 44,3,792,352, 20,615,169, 61,156, 88,863,255, 33,132,5, 63,8,964,831, 55,133, 12, 54,261,867, 17, 12,699,233,251,446, 43,223, 374, 75, 34, 69,120, 84,134,8,806,8, 48, 86,211, 2436, 61, 81, 87, 12, 838, 34, 17,141, 44,155,128,6, 29, 16, 16, 34,130,430,325, 41, 28, 53, 32,291,545, 44,3,792,352, 20,615,169, 61,156, 88,863,255, 33,132,5, 63,8,964,831, 55,133, 12, 54,261,867, 17,… Read More R survminer::ggsurvplot distance between axis labels and axis title

How do I get gtsummary to exponentiate a weibull model?

I’m running a Weibull regression using the survreg function in the survival package. I’d like to use gtsummary to then produce a table of the results. But when I try to exponentiate the beta coefficient, it just returns me the same beta value – but says it’s exp(B) in the header. reprex: library(survival) library(gtsummary) fit_w<-survreg(Surv(time,… Read More How do I get gtsummary to exponentiate a weibull model?