Guest User

Untitled

a guest
Jan 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. library("Quandl")
  2. euribor1m <- Quandl("BOF/QS_D_IEUTIO3M", type = "xts")
  3. euribor3m <- Quandl("BOE/IUDERB3", type = "xts")
  4. difference <- euribor3m-euribor1m
  5. plot(difference)
  6.  
  7. summary(difference)
  8. Index difference
  9. Min. :1999-01-04 Min. :-0.0540000
  10. 1st Qu.:2004-01-06 1st Qu.: 0.0000000
  11. Median :2008-12-31 Median : 0.0000000
  12. Mean :2009-01-02 Mean : 0.0006019
  13. 3rd Qu.:2014-01-01 3rd Qu.: 0.0000000
  14. Max. :2019-01-11 Max. : 1.0000000
  15.  
  16. index(difference[which(difference>0.5)])
  17. "2000-10-31" "2001-10-04" "2001-10-10"
Add Comment
Please, Sign In to add comment