R

圖表相關警告

  • January 6, 2015

當我執行 chart.Correlation 時,我收到了一系列警告。我得到了相同的警告

chart.Correlation(經理

$$ ,1:2 $$,method=“皮爾森”)

這是一個簡短的範例:

1: In plot.window(...) : "method" is not a graphical parameter
2: In plot.xy(xy, type, ...) : "method" is not a graphical parameter
3: In title(...) : "method" is not a graphical parameter
4: In plot.window(...) : "method" is not a graphical parameter
5: In plot.xy(xy, type, ...) : "method" is not a graphical parameter
6: In title(...) : "method" is not a graphical parameter
7: In axis(side = side, at = at, labels = labels, ...) :

製作了圖表,因此我可以繼續進行該項目,但是

a) 發生了什麼事?b) 我應該擔心定時炸彈嗎 c) 可以修復嗎?

順便說一句,我在跑步

R 版本 3.1.2 (2014-10-31) x86_64-w64-mingw32

PerformanceAnalytics_1.4.3541

xts_0.9-7

zoo_1.7-11

謝謝,拉古

沒什麼好擔心的:

  1. 方法是不是圖形參數的相關類型。
  2. 方法參數正在傳遞給pairs函式……
  3. 該函式說這不是圖形參數

它可以在原始碼中修復(或忽略它!)

引用自:https://quant.stackexchange.com/questions/16114