Plot Brier curve
Plot Brier score curves
plotBrier( x, models, which = "score", xlim, ylim, xlab, ylab, col, lwd, lty = 1, cex = 1, pch = 1, type = "l", axes = 1L, percent = 1L, conf.int = 0L, legend = 1L, ... )
x |
Object obtained with |
models |
Choice of models to plot |
which |
Character. Either |
xlim |
Limits for x-axis |
ylim |
Limits for y-axis |
xlab |
Label for x-axis |
ylab |
Label for y-axis |
col |
line color |
lwd |
line width |
lty |
line style |
cex |
point size |
pch |
point style |
type |
line type |
axes |
Logical. If |
percent |
Logical. If |
conf.int |
Logical. If |
legend |
Logical. If |
... |
Used for additional control of the subroutines: plot,
axis, lines, legend. See |
# survival library(survival) library(prodlim) ds1=sampleData(40,outcome="survival") ds2=sampleData(40,outcome="survival") f1 <- coxph(Surv(time,event)~X1+X3+X5+X7+X9,data=ds1,x=TRUE) f2 <- coxph(Surv(time,event)~X2+X4+X6+X8+X10,data=ds1,x=TRUE) xscore <- Score(list(f1,f2),formula=Hist(time,event)~1,data=ds2,times=0:12,metrics="brier") plotBrier(xscore)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.