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 中矩阵的前 100 行?我发现的只是使用需要条件参数的子集。我只需要使用具有相同列数的前 n 行来制作更小的矩阵
使用head功能:
head
head(mat, 100)
最简单的方法是a[1:100,](除非行数少于 100,在这种情况下 head(a,100) 效果更好)
a[1:100,]