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.
我有一个大数据框,我想将其分解为较小的数据框。我知道我想拆分哪些行(即我想分隔第 1 - 33、34 - 60 行,...)。我知道我必须使用子集(),但我似乎找不到具体的参数。
如果您的意思是从第 1 行到第 33 行,请执行此操作
df[1:33,]
举个例子:
> df<-data.frame(A=LETTERS[1:10], B=c(1:10)) > df A B 1 A 1 2 B 2 3 C 3 4 D 4 5 E 5 6 F 6 7 G 7 8 H 8 9 I 9 10 J 10 > df[1:3,] A B 1 A 1 2 B 2 3 C 3