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.
2020 X 4の行列がありますが、行2000から2020までの値はすべてNAです。これらの行を削除したいので、マトリックスは2000X4マトリックスになります。そうする簡単な方法はありますか?
必要な値のみを選択してマトリックスを再割り当てするだけです
行列がと呼ばれx、最初の2000行のみが必要な場合
x
新しいオブジェクトを作成できますnewx
newx
newx <- x[1:2000,]
または単に何xであるかを再割り当てします
x <- x[1:2000,]