This is a plot
method for class "std_glm"
.
# S3 method for std_glm
plot(
x,
plot_ci = TRUE,
ci_type = "plain",
ci_level = 0.95,
transform = NULL,
contrast = NULL,
reference = NULL,
summary_fun = "summary_std_glm",
...
)
None. Creates a plot as a side effect
An object of class "std_glm"
.
if TRUE
, add the confidence intervals to the plot.
A string, indicating the type of confidence intervals. Either "plain", which gives untransformed intervals, or "log", which gives log-transformed intervals.
Coverage probability of confidence intervals.
If set to "log"
, "logit"
, or "odds"
, the standardized
mean \(\theta(x)\) is transformed into \(\psi(x)=\log\{\theta(x)\}\),
\(\psi(x)=\log[\theta(x)/\{1-\theta(x)\}]\), or
\(\psi(x)=\theta(x)/\{1-\theta(x)\}\), respectively. If left unspecified,
\(\psi(x)=\theta(x)\).
If set to "difference"
or "ratio"
, then \(\psi(x)-\psi(x_0)\)
or \(\psi(x) / \psi(x_0)\) are constructed, where \(x_0\) is a reference
level specified by the reference
argument.
If not NULL
, a doubly robust estimator of the standardized estimator is used.
If contrast
is specified, the desired reference level.
For internal use only. Do not change.
Unused.