我嘗試使用數據框製作散點圖矩陣(此處爲http://statweb.stanford.edu/~tibs/ElemStatLearn/)。但是,變量的順序並不是我所希望的,我想忽略變量列車。R中的對 - 重新排序變量
據幀順序:
lcavol, lweight, age, lbph, svi, lcp, gleason, pgg45, lpsa,train
祝順序:
lpsa, lcavol, lweight, age, lbph, svi, lcp, gleason, pgg45
目前,這裏是我的代碼:
prostate1 <- read.table("C:/Users/.../Desktop/prostate.data")
prostate=as.data.frame.matrix(prostate1)
pairs(prostate, col="purple")
我嘗試添加的參數horInd和verInd,但我得到以下警告:
1: horInd" is not a graphical parameter
2: verInd" is not a graphical parameter
如果有人可以幫助我,這真的會升值。
嗨,歡迎SO。請提供一個可重複的示例 – Heroka