ggadjustedcurves错误:无法使用矩阵或数组进行列索引

时间:2018-03-07 13:13:05

标签: r cox-regression

fit <- coxph(Surv(time, status)~Age + strata(Study), data)

我的研究使用2级因子,所有其他变量都是数值

summary(fit)确实给了我带有coef和p值等的结果。

然而,在尝试这样的曲线时:

ggadjustedcurves(fit, variable="Study", data=data, method="average")

我收到此消息:

  

错误:无法使用矩阵或数组进行列索引

1 个答案:

答案 0 :(得分:2)

您的数据必须采用tibble格式。尝试: ggadjustedcurves(fit,variable =“Study”,data = data.frame(data),method =“average”)