2017-10-12 9 views
0

私はggplotを初めて使いました。これは簡単な質問のようですが、私はうんざりです。エラーメッセージが表示されます。ggplot時系列、エラー:xts/zoo型のオブジェクトの縮尺を自動的に選択する方法がわかりません。継続的にデフォルトにする

Don't know how to automatically pick scale for object of type xts/zoo. Defaulting to continuous.

グラフに線が表示されません。ここでは出力です: ggplot output は、ここに私のコードです:

> library(quantmod) 
> library(TTR) 
> library(ggplot2) 
> getSymbols("SPY") 
[1] "SPY" 
> price<-SPY[,1] 
> ggplot(price,aes(x=time(price),y=price),geom_line(color="blue")) 
+1

ggplotはdata.framesが好きです。また、 'ggplot(...)+ geom_line(...)'が必要です。 –

答えて

0

動物園はggplot2でXTS /動物園のオブジェクトをプロットするautoplot.zooを提供しています。

autoplot(price, col = I("blue")) + ggtitle("SPY") 

はまた、古典的なグラフィックスを使用する(quantmodから)chart_Seriesをチェックアウト:

chart_Series(SPY) 
関連する問題