情節gvisMotionChart我有一個數據幀df
與列與timevar的年份和月份
df$year_month = "2011-1" "2011-02" "2011-03" ...
我想用這個作爲gvisMotionChart
功能的timevar
說法。我想:
library(zoo)
df$year_month = as.yearmon(df$year_month)
然而,當我試圖繪製圖表,收到以下錯誤:
The timevar has to be of numeric or Date format. Currently is it yearmon
當繪製gvisMotionChart
是有可能有時間可變顯示值:
"Jan 2011" "Feb 2011" ...
正如羅蘭所說,我可以轉換成數字eg 201101, 201102, ...
但後來大概是時間變量會顯示值:
"201101" "201102" ...
是不是從錯誤消息明顯嗎?使'df $ year_month'爲數字或日期。 – Roland