Description Usage Arguments Details See Also Examples
Plot focused model comparison statistics: base graphics method
1 2 3 |
x |
Output from |
ci |
Plot interval estimates? ( |
xlab |
x-axis label. |
ylab |
y-axis label. |
xlim |
x-axis limits (pair of numbers) |
ylim |
y-axis limits |
pch |
Plot point character, by default 19 (solid circle). |
mfrow |
Vector of two numbers giving the number of rows and number of columns respectively in the plot grid, if there are multiple focuses. |
... |
Other options to pass to |
If the focus estimates are available, then the focus estimates are plotted against the root MSE. One plot is made for each covariate value defining different focuses. If the wide model estimate is available, this is illustrated as a solid line on the plot, and if the narrow model estimate is available, this is shown as a dashed line.
If the focus estimates are unavailable, then the standard errors of the focus estimate are plotted against the corresponding bias. The plot points are shaded with darkness proportional to the RMSE, with the point of maximum RMSE in black.
The ggplot2-based plot method, ggplot_fic
, is
slightly nicer.
ggplot_fic, summary.fic
1 2 3 4 5 6 7 8 9 10 11 12 | ## Example from the main vignette, see there for more details
wide.glm <- glm(low ~ lwtkg + age + smoke + ht + ui + smokeage + smokeui,
data=birthwt, family=binomial)
vals.smoke <- c(1, 58.24, 22.95, 1, 0, 0, 22.95, 0)
vals.nonsmoke <- c(1, 59.50, 23.43, 0, 0, 0, 0, 0)
X <- rbind("Smokers" = vals.smoke, "Non-smokers" = vals.nonsmoke)
inds0 <- c(1,1,0,0,0,0,0,0)
combs <- all_inds(wide.glm, inds0)
ficres <- fic(wide = wide.glm, inds = combs, inds0 = inds0,
focus = prob_logistic, X = X)
plot(ficres)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.