Displaying 2 results from an estimated 2 matches for "pfs_month".
Did you mean:
pfs_months
2013 Apr 24
2
Trouble Computing Type III SS in a Cox Regression
...oping that people will take a look to see if they can tell what's going on.
>
> Here is my R code:
>
> cox3grp<- subset(survData,
> Treatment %in% c("DC", "DA", "DO"),
> c("PTNO", "Treatment", "PFS_CENSORED", "PFS_MONTHS", "AGE", "PS2"))
> cox3grp<- droplevels(cox3grp)
> str(cox3grp)
>
> coxCV<- coxph(Surv(PFS_MONTHS, PFS_CENSORED == 1) ~ AGE + PS2, data=cox3grp, method = "efron")
> coxCV
>
> drop1(coxCV, test="Chisq")
>
> require(car)
&...
2013 Apr 24
1
Trouble Computing Type III SS in a Cox Regression using drop1 and Anova
...from the car package. Am hoping that people will take a look to see if they can tell what's going on.
Here is my R code:
cox3grp <- subset(survData,
Treatment %in% c("DC", "DA", "DO"),
c("PTNO", "Treatment", "PFS_CENSORED", "PFS_MONTHS", "AGE", "PS2"))
cox3grp <- droplevels(cox3grp)
str(cox3grp)
coxCV <- coxph(Surv(PFS_MONTHS, PFS_CENSORED == 1) ~ AGE + PS2, data=cox3grp, method = "efron")
coxCV
drop1(coxCV, test="Chisq")
require(car)
Anova(coxCV, type="III")
And...