quantile.rug {gbm}R Documentation

Quantile rug plot

Description

Marks the quantiles on the axes of the current plot.

Usage

quantile.rug(x,prob=(0:10)/10,...)

Arguments

x a numeric vector.
prob the quantiles of x to mark on the x-axis.
... additional graphics parameters currently ignored.

Details

Value

No return values

Author(s)

Greg Ridgeway gregr@rand.org

References

http://www.i-pensieri.com/gregr/gbm.shtml

See Also

plot, quantile, jitter, rug.

Examples

x <- rnorm(100)
y <- rnorm(100)
plot(x,y)
quantile.rug(x)

[Package gbm version 1.5-3 Index]