2016-11-29 8 views
-2

Rでqqnormを使用するときにラベルを消す方法はありますか?ここに私のコードの抜粋です:時系列からのベクトルにarchresのデータ系列の書式を変更するQQのプロットに日付付きのラベルが表示される

dev.off() 
par(mfrow=c(1, 1), oma=c(0,0,3,0)) ; par(cex.axis=.75, cex.lab=.75, cex.main=.8, cex.sub=.75) 
archres=sample_full_res/sqrt(garch_h) 
qqnorm(archres,main='SARIMA-GARCH Residuals') 
qqline(archres) 

Plot showing the problem with labels on the qq plot

+1

[再現可能な例]を提供するデータやコードを含めることができますか(http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example )? –

+0

ベンに感謝します。コードは独自仕様ですが、archresは四半期ベースのデータです。 – Matt

+0

マット - あなたは、軸ラベルまたは軸の目盛りのラベルを意味しますか? – G5W

答えて

0

は、問題を解決します。すなわち

は、archresとは対照的にas.vector(aggregate.ts(archres))を使用します。

関連する問題