dgev | R Documentation |
Density function of Generalized Extreme Value distribution
dgev(x, loc = 0, scale = 1, shape = 0, log = FALSE)
x |
[vector] Vector of values |
loc |
[vector] Location parameter |
scale |
[vector] Scale parameter |
shape |
[vector] Shape parameter |
log |
[bool] Return log of density if TRUE, default is FALSE |
[vector] Density of GEV at x
## Data
loc = 1
scale = 0.5
shape = -0.2
x = base::seq( -5 , 5 , length = 1000 )
y = dgev( x , loc = loc , scale = scale , shape = shape )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.