本文介绍了选择矩阵的前n行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何选择R中矩阵的前100行?我发现所有使用的是需要条件参数的子集.我只需要使用前n个具有相同列数的行来制作较小的矩阵

How can I select, say top 100 rows of a matrix in R?All I found is using subset which requires condition parameter. All I need to make smaller matrix by using only first n number of rows with same number of columns

推荐答案

使用head函数:

head(mat, 100)

这篇关于选择矩阵的前n行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 13:33
查看更多