Plot the estimated baseline mean function. If "se" option of panelReg is not "NULL", 95 interval is also plotted.

# S3 method for panelReg
plot(x, ...)

Arguments

x

The result of a call to the panelReg function.

...

Other graphical parameters such as line type, color, or axis labels.

See also

Examples

data(blaTum) ## Plot the fit of bladder tumor data set formula <- PanelSurv(id, time, count) ~ num + size + treatment fit1 <- panelReg(formula, data=blaTum, method = "AEE", se = "Sandwich") plot(fit1)
fit2 <- panelReg(formula, data=blaTum, method = "MLs", se = "NULL") plot(fit2)