如何从R& coxph获得95%的CI?

时间:2016-04-28 19:15:56

标签: r confidence-interval

我在R< coxph()中使用了以下函数来拟合cox危险模型。我想报告正确的统计数据;但是,输出中没有95%的CI。

//// Psuedo Code... var elemGroupOne = [], elemGroupTwo = []; // push divs to the arrays elemGroupOne.push(/* jQuery Object... */); $("#vFormat").on("change", function(event) { var selectedValue = $(this).val(); switch (selectedValue) { case "Option 1": // Hide group two.. for ( i = 0; i < elemGroupTwo.length; i++ ) { var el = elemGroupTwo[i]; $(el).hide(); } // Show group one.. for ( i = 0; i < elemGroupOne.length; i++ ) { var el = elemGroupOne[i]; $(el).show(); } break; case "Option 2": // Hide group one.. for ( i = 0; i < elemGroupOne.length; i++ ) { var el = elemGroupOne[i]; $(el).hide(); } // Show group one.. for ( i = 0; i < elemGroupTwo.length; i++ ) { var el = elemGroupTwo[i]; $(el).show(); } break; } });

我只收到以下栏目。

Surv(days, censor) ~ gender + age + treatment, data_1)

3 个答案:

答案 0 :(得分:7)

获得与预测变量相关的风险比的置信区间的一种简单方法是使用&#34;摘要&#34;适合你的模特。如果您想要系数估计值的置信区间,您可以使用&#34; confint&#34;功能。对confint结果的征求也可用于获得风险比置信区间。

coef exp(coef)  se(coef)     z       p

答案 1 :(得分:1)

如果您需要进行进一步处理,请考虑使用tidy的{​​{1}}解决方案:

broom

this reference

的更多详情

答案 2 :(得分:0)

您可以在CI中的CoxPH模型摘要中找到R(如果使用survival包,则会在lower .95upper .95