A plot method to visualise the results of a bglmnet
object.
# S3 method for bglmnet
plot(
x,
highlight,
interactive = FALSE,
classic = NULL,
tag = NULL,
shiny = FALSE,
which = c("vip", "boot", "boot_size"),
width = 800,
height = 400,
fontSize = 12,
left = 50,
top = 30,
chartWidth = "60%",
chartHeight = "80%",
axisTitlesPosition = "out",
dataOpacity = 0.5,
options = NULL,
hAxis.logScale = TRUE,
ylim,
text = FALSE,
backgroundColor = "transparent",
legend.position = "right",
jitterk = 0.1,
srt = 45,
max.circle = 15,
min.prob = 0.1,
...
)
x |
|
---|---|
highlight | the name of a variable that will be highlighted. |
interactive | logical. If |
classic | logical. Depricated. If |
tag | Default NULL. Name tag of the objects to be extracted from a gvis (googleVis) object. The default tag for is NULL, which will
result in R opening a browser window. Setting |
shiny | Default FALSE. Set to TRUE when using in a shiny interface. |
which | a vector specifying the plots to be output. Variable
inclusion type plots |
width | Width of the googleVis chart canvas area, in pixels. Default: 800. |
height | Height of the googleVis chart canvas area, in pixels. Default: 400. |
fontSize | font size used in googleVis chart. Default: 12. |
left | space at left of chart (pixels?). Default: "50". |
top | space at top of chart (pixels?). Default: "30". |
chartWidth | googleVis chart area width.
A simple number is a value in pixels;
a string containing a number followed by |
chartHeight | googleVis chart area height.
A simple number is a value in pixels;
a string containing a number followed by |
axisTitlesPosition | Where to place the googleVis axis titles, compared to the chart area. Supported values: "in" - Draw the axis titles inside the the chart area. "out" - Draw the axis titles outside the chart area. "none" - Omit the axis titles. |
dataOpacity | The transparency of googleVis data points, with 1.0 being completely opaque and 0.0 fully transparent. |
options | a list to be passed to the googleVis function giving
complete control over the output. Specifying a value for
|
hAxis.logScale | logical, whether or not to use a log scale on the horizontal axis. Default = TRUE. |
ylim | the y limits of the |
text | logical, whether or not to add text labels to classic
boot plot. Default = |
backgroundColor | The background colour for the main area of the chart. A simple HTML color string, for example: 'red' or '#00cc00'. Default: 'transparent' |
legend.position | the postion of the legend for classic plots.
Default |
jitterk | amount of jittering of the model size in the lvk and boot plots. Default = 0.1. |
srt | when |
max.circle | determines the maximum circle size. Default = 15. |
min.prob | lower bound on the probability of a model being selected. If
a model has a selection probability lower than |
... | further arguments (currently unused) |