我有以下数据,我试图用R中的dygraphs绘图:
ts.rmean ts.rmax
0001-01-01 3.163478 5.86
0002-01-01 3.095909 4.67
0003-01-01 3.112000 6.01
0004-01-01 2.922800 5.44
0005-01-01 2.981154 5.21
0006-01-01 3.089167 5.26
0007-01-01 3.168000 6.28
0008-01-01 3.040400 5.00
0009-01-01 2.809130 6.04
0010-01-01 3.002174 4.64
0011-01-01 3.002000 4.93
0012-01-01 3.081250 5.28
0013-01-01 2.687083 4.62
每行代表 ts.rmean 和 ts.rmax 的1月1日至12月31日之间的每日价值。由于我没有指定日期,图表的x轴显示从1到366的每一行的索引。可以修改数据,使x轴显示 Month-Day
答案 0 :(得分:3)
你可以这样做:
library(dygraphs)
library(xts)
#convert the rownames of your data frame to a year-month-day,
#used 2012 because it has 366 days and subsetted to fit the example
rownames(data)<-strptime(paste0("2012-",1:366),format="%Y-%j")[1:nrow(data)]
#transform to xts
data<-as.xts(data)
#plot
dygraph(data)