在使用quantmod::chartSeries绘制图表时,如何使data.frame中的plot x标签格式保持原样?谢谢!下面的代码,图表x标签不正确
test_data <- data.frame(mydate=as.Date(c('2013-1-1','2023-1-6','2023-1-20')),
open = c(1,7,8),
high=c(7,10,9),
low= c(1,3,4),
close=c(1.5,6,7.5))
quantmod::chartSeries(ts(test_data))
1条答案
按热度按时间o2rvlv0m1#