来自 logistf 的森林图
Forest plot from logistf
我有 运行 一些模型用于 R 中的惩罚逻辑模型,使用
物流包。然而,我希望为数据绘制一些森林图。
sjPlot 包:http://www.strengejacke.de/sjPlot/custplot/
为 glm 输出提供了出色的功能,但没有为 logistf 功能提供功能。
有什么帮助吗?
logistf
对象在结构上与 glm
对象不同,但差异不大。我添加了对 logistf 拟合模型的支持,但是,1) 无法打印模型摘要和 b) logistf 模型目前不支持预测概率图。
今晚我会更新the code on GitHub,所以你可以试试更新后的sjp.glm
功能...
library(sjPlot)
library(logistf)
data(sex2)
fit<-logistf(case ~ age+oc+vic+vicl+vis+dia, data=sex2)
# for this example, axisLimits need to be specified manually
sjp.glm(fit, axisLimits = c(0.05, 25), transformTicks = T)
我有 运行 一些模型用于 R 中的惩罚逻辑模型,使用 物流包。然而,我希望为数据绘制一些森林图。
sjPlot 包:http://www.strengejacke.de/sjPlot/custplot/
为 glm 输出提供了出色的功能,但没有为 logistf 功能提供功能。
有什么帮助吗?
logistf
对象在结构上与 glm
对象不同,但差异不大。我添加了对 logistf 拟合模型的支持,但是,1) 无法打印模型摘要和 b) logistf 模型目前不支持预测概率图。
今晚我会更新the code on GitHub,所以你可以试试更新后的sjp.glm
功能...
library(sjPlot)
library(logistf)
data(sex2)
fit<-logistf(case ~ age+oc+vic+vicl+vis+dia, data=sex2)
# for this example, axisLimits need to be specified manually
sjp.glm(fit, axisLimits = c(0.05, 25), transformTicks = T)