Description Usage Arguments Details Author(s) References See Also Examples
Draw a "random scatter plot" or random points as horizontal or vertical intervals.
| 1 2 | 
| x | an rv object | 
| y | random or fixed vector | 
| ... | other arguments passed on to  | 
If a component x is fixed and the corresponding component of y
is random, the resulting ‘point’ is a vertical uncertainty ('credible')
interval.  NOTE. You must call plot.rv explicitly to obtain
this behavior.
If a component y is fixed and the corresponding component of x
is random, the resulting ‘point’ is a horizontal uncertainty ('credible')
interval.
If a component of x and the corresponding component of y is
random, the resulting ‘point’ is a scatterplot of simulations from the joint
distribution of code(x,y).
Compatible with objects of class ‘rvsummary’.
Jouni Kerman jouni@kerman.com
Kerman, J. and Gelman, A. (2007). Manipulating and Summarizing Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
See also vignette("rv").
| 1 2 3 4 5 6 7 8 9 |   x <- as.rv(1:30)
  y <- rvnorm(mean=x, sd=1)
  ## Not run: plot(x, y)
  ## Not run: plot(y, x)
  ## Not run: plot(y)
  y <- as.rvsummary(x)
  ## Not run: plot(x, y)
  ## Not run: plot(y, x)
  ## Not run: plot(y)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.