我在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)
答案 0 :(得分:7)
获得与预测变量相关的风险比的置信区间的一种简单方法是使用&#34;摘要&#34;适合你的模特。如果您想要系数估计值的置信区间,您可以使用&#34; confint&#34;功能。对confint结果的征求也可用于获得风险比置信区间。
coef exp(coef) se(coef) z p
答案 1 :(得分:1)
答案 2 :(得分:0)
您可以在CI
中的CoxPH
模型摘要中找到R
(如果使用survival
包,则会在lower .95
和upper .95
下