Description Usage Arguments Value See Also Examples
View source: R/plotFunctions.R
Creates various types of plot to visualize bootNet
objects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | plotBoot(
x,
type = "edges",
net = "temporal",
plot = "all",
cor = 0.7,
order = "mean",
ci = 0.95,
pairwise = TRUE,
interactions = TRUE,
labels = NULL,
title = NULL,
cis = "quantile",
true = NULL,
errbars = FALSE,
vline = FALSE,
threshold = FALSE,
difference = FALSE,
color = FALSE,
text = FALSE,
textPos = "value",
multi = NULL,
directedDiag = FALSE,
...
)
## S3 method for class 'bootNet'
plot(
x,
type = "edges",
net = "temporal",
plot = "all",
cor = 0.7,
order = "mean",
ci = 0.95,
pairwise = TRUE,
interactions = TRUE,
labels = NULL,
title = NULL,
cis = "quantile",
true = NULL,
errbars = FALSE,
vline = FALSE,
threshold = FALSE,
difference = FALSE,
color = FALSE,
text = FALSE,
textPos = "value",
multi = NULL,
directedDiag = FALSE,
...
)
|
x |
Output from |
type |
The outcome measure to plot. Options include: |
net |
Determines which network to plot coefficients for. Options
include: |
plot |
Primary use is to set as |
cor |
Numeric value to indicate the correlation stability value to be plotted. Only applies to the case-drop bootstrapping output. |
order |
Determines how to arrange the predictors displayed in the plot.
If |
ci |
Numeric value between 0 and 1 to specify the confidence level. |
pairwise |
Logical. Whether to plot pairwise relationships. Defaults to
|
interactions |
Logical. Whether to plot interactions. Defaults to
|
labels |
Logical. Determines whether to plot names of the predictors. |
title |
Character vector the title label. |
cis |
Either |
true |
Defaults to |
errbars |
Logical. Not relevant to the case-drop bootstrap. If
|
vline |
Logical or numeric. Not relevant to the case-drop bootstrap. If
|
threshold |
Numeric or logical. Not relevant to the case-drop bootstrap.
Has a significant effect on the bootstrapped coefficient distributions. If
|
difference |
Logical. Not relevant to the case-drop bootstrap. If
|
color |
Logical. Only applies when |
text |
Logical. For difference plots, if |
textPos |
Supports the |
multi |
Useful when there are interactions in a model. If |
directedDiag |
See corresponding argument in the |
... |
Additional arguments. |
A coefficient plot, difference plot, or correlation-stability plot.
When plot %in% c('none', FALSE)
, the table used to construct the
relevant plot will be returned as output instead.
1 2 3 4 5 6 7 8 9 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.