alr3 パッケージから紙幣データ フレームをプロットしようとしています。ペア関数を実行するとエラーが発生し、正しいプロットが得られません。ありがとう。
基本的に、「alr3」パッケージに存在する「銀行券」データフレームからすべての偽造紙幣を見つけるためのコードを書こうとしています。
コード:-
pairs(banknote[,-1],panel=
function(x,y,fake){
xy <- cbind(x,y)
points(xy[fake==0,],pch=15)
points(xy[fake==1,],pch=0)
}, fake=Y)
エラー:-
Error in points(xy[fake == 0, ], pch = 15) :
(subscript) logical subscript too long
In addition: Warning messages:
1: In plot.window(...) : "fake" is not a graphical parameter
2: In plot.xy(xy, type, ...) : "fake" is not a graphical parameter
3: In title(...) : "fake" is not a graphical parameter
4: In plot.window(...) : "fake" is not a graphical parameter
5: In plot.xy(xy, type, ...) : "fake" is not a graphical parameter
6: In title(...) : "fake" is not a graphical parameter
7: In axis(side = side, at = at, labels = labels, ...) :
"fake" is not a graphical parameter