plot_pdf {psborrow2} | R Documentation |
Plot Probability Density Function Values
Description
Plot Probability Density Function Values
Usage
plot_pdf(x, y, ...)
Arguments
x |
values |
y |
probability density values |
... |
passed to Plots the density values as a curve with the lower vertical limit set to 0. |
Value
No return value, this function generates a plot in the current graphics device.
Examples
x <- seq(-2, 2, len = 100)
y <- dnorm(x)
plot_pdf(x, y)
[Package psborrow2 version 0.0.3.4 Index]