Is there a functionality to increase plot size? I have +20 features and the plot is cluttered even after reducing font-size.
output$coxplot <- renderPlot({
fit.coxph<- coxph(Surv(time,status) ~ feature1 + feature2 +...+featureN, data=data)
print(ggforest(fit.coxph, data = dat, fontsize = 0.3,noDigits = 3) )
})
Trying to render in shiny and adjust the plot height and width or the size but no parameters in ggforest function called "size" but there is "fontsize".