如何更改ggforest(或coxph回归图)中的图大小?

时间:2019-06-19 04:17:50

标签: r ggplot2 survival-analysis cox-regression

有增加地块大小的功能吗?我有+20个功能,即使减小了字体大小后,情节也很混乱。

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) )
  })

尝试渲染有光泽的图形并调整绘图的高度和宽度或大小,但ggforest函数中没有名为“ size”的参数,但是有“ fontsize”。

1 个答案:

答案 0 :(得分:1)

@marius:谢谢。您的问题提示我要回答我自己的问题。在闪亮的应用程序中,可以在ui中设置大小,而不要在ggforest中设置它作为参数。 plotOutput(outputId = "coxplot", height = 750)

如果我不使用Shiny,想知道如何在 ggforest 中设置大小参数。