'How can I add labels to recent observations when plotting the xts series?
My problem is shown on picture i added. I have data for last observations but i can not set visible labels on graph.

library(xts)
tufe <- c(0.02, 0.03, 0.02, 0.03, 0.02, 0.02, 0.00, 0.04, 0.03, 0.04, 0.01, 0.03, 0.00, 0.01, 0.00, 0.04, 0.04, 0.01, 0.00, 0.03, 0.01, 0.03, 0.00, 0.05, 0.02, 0.02, 0.00, 0.03, 0.02, 0.01, 0.01, 0.02, 0.03, 0.03, 0.01, 0.02, 0.02, 0.03, 0.00, 0.03, 0.02, 0.01, 0.02, 0.02, 0.05, 0.02, 0.01, 0.04, 0.03, 0.05, 0.07, 0.07, 0.01, 0.03, 0.03, 0.03, 0.02, 0.03, 0.03, 0.05, 0.04, 0.04)
tufe <- ts(tufe, start = c(c(2006, 1), 4), frequency = 4)
tufe.xts <- as.xts(tufe)
plot(tufe.xts)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
