Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rにいくつかの列がロードされたファイルがあります。私が達成したいのは、各列の最小値に対してファイルの列を並べることです。例えば
入力(minA=0,minB=3,minC=1) ABC 4 8 1 2 3 4 0 3 1
出力 ABC 4 1 8 2 4 3 0 1 3
この方法を試すことができますapply():
apply()
mins <- apply(myData, 2, min) o <- order(mins) myData <- myData[,o]