[생존 패키지 사용] 약한 용어로 Cox 비례 위험 모델의 예상 생존자 함수를 계산하려고합니다. 연약한 항이 모형에 있으면 예측 생존자 함수를 계산할 수없는 것 같습니다.
## Example
require(survival)
data(rats)
## Create fake weight
set.seed(90989)
rats$weight<-runif(nrow(rats),0.2,0.9)
## Cox model with gamma frailty on litter
fit <- coxph(Surv(time, status) ~ rx+weight+frailty(litter,dist="gamma"),
data = rats)
## Compute survival curve from the cox model for rx=0 and weight=0.5 kg
plot(survfit(fit, newdata=data.frame(rx=0,weight=0.5)),xlab = "time",
ylab="Survival")
## Running this line, I get following error message:
Error in survfit.coxph(fit, newdata = data.frame(rx = 0, weight = 0.5)) :
Newdata cannot be used when a model has sparse frailty terms
sparse=TRUE, Sparse =FALSE, sparse =0, sparse=5
옵션 을 사용하여 희소 및 비 희소 계산 방법을 모두 사용해 보았습니다
. 그러나 아무도 효과가 없었습니다.
연약한 모형을 기반으로 예측 생존 곡선을 어떻게 계산합니까?