plot.dynaTree {dynaTree} | R Documentation |
Plotting Predictive Distributions of Dynamic Tree models
Description
Plotting predictive distributions constructed from dynamic tree (regression) models for 1-d data – provided primarily for use in our 1-d examples and for illustrative purposes
Usage
## S3 method for class 'dynaTree'
plot(x, proj = 1, add = FALSE, ylim = NULL,
col = 2, lwd = 1, ptype = c("each", "mean"), ...)
Arguments
x |
a |
add |
a scalar |
proj |
when |
ylim |
user-specified y-axis limits values; see |
col |
user-specified color value; see |
lwd |
user-specified line-width value; see |
ptype |
type of plot used to visualize several predictive
samples obtained from |
... |
other arguments to the generic |
Details
This plotting function only handles the predictive output from
1-dimensional regression dynaTree
models as obtained by
first calling dynaTree
and then
predict.dynaTree
on the resulting output at new
XX
locations. It is provided to help make the illustration
of our 1-d examples easier and to serve as an aid in a user's
development of custom plotting functions in higher dimensions
Value
The only output of this function is a pretty plot
Author(s)
Robert B. Gramacy rbg@vt.edu,
Matt Taddy and Christoforos Anagnostopoulos
References
Taddy, M.A., Gramacy, R.B., and Polson, N. (2011). “Dynamic trees for learning and design” Journal of the American Statistical Association, 106(493), pp. 109-123; arXiv:0912.1586
https://bobby.gramacy.com/r_packages/dynaTree/
See Also
predict.dynaTree
, dynaTree
,
update.dynaTree
Examples
## see dynaTree, dynaTrees and update.dynaTree for examples
## which use this plot function