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。我想删除这些行,我的矩阵现在应该是 2000 X 4 矩阵。有没有一种简单的方法可以做到这一点。
只需重新分配矩阵,仅选择您想要的值
如果您的矩阵被调用x,并且您只想要前 2000 行
x
你可以创建一个新对象newx
newx
newx <- x[1:2000,]
或者只是重新分配x什么
x <- x[1:2000,]