Description Usage Arguments Value Examples
This function calculates the empirical distribution function at each element of a vector of observations.
1 |
v |
|
adjust |
|
vector
1 2 3 4 5 6 7 8 9 10 11 | data(smi)
data(ftse100)
s1 <- window(ftse100, "1990-11-09", "2004-03-25")
s1a <- alignDailySeries(s1)
s2a <- alignDailySeries(smi)
idx <- merge(s1a, s2a)
r <-returns(idx)
rp <- series(window(r, "1994-01-01", "2003-12-31"))
rp <- rp[(rp[, 1] != 0) & (rp[, 2] !=0), ]
Udata <- apply(rp, 2, edf, adjust = 1)
plot(Udata)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.