使用seq函数对数据帧进行采样

时间:2018-09-02 09:09:10

标签: r

如何使用seq函数将具有400行的数据框缩短到数据集中的前100个观察值?

testdataframe = data.frame(animals, status)

testdataframe

这将打印出所有400。

我知道我可以做到并获得前100个:

head(testdataframe, 100) 

但是我也想知道如何使用seq函数来做到这一点。

1 个答案:

答案 0 :(得分:1)

您可以这样做:

testdataframe[seq(from=1,to=100),]

但是没有人会这样做。最常见的方法是使用普通索引:

testdataframe[1:100,]

link可以帮助您了解R中的索引数据帧: