如何在 r 中按索引选择行(带有示例)
您可以使用以下方法通过 R 中的索引从数据框中选择行:
方法一:通过索引选择行
#select third row
df[3,]
方法二:通过索引选择多行
#select third, fourth, and sixth rows
df[c(3, 4, 6),]
方法3:通过索引选择行范围
#select rows 2 through 5
df[2:5,]
以下示例展示了如何在实践中使用以下数据框使用每种方法:
#create data frame df <- data. frame (team=c('A', 'A', 'A', 'B', 'B', 'B'), points=c(19, 14, 14, 29, 25, 30), assists=c(4, 5, 5, 4, 12, 10), rebounds=c(9, 7, 7, 6, 10, 11)) #view data frame df team points assists rebounds 1 A 19 4 9 2 A 14 5 7 3 to 14 5 7 4 B 29 4 6 5 B 25 12 10 6 B 30 10 11
示例 1:按索引选择行
以下代码显示如何仅选择数据框的第三行:
#select third row
df[3, ]
team points assists rebounds
3 to 14 5 7
仅返回第三行中的值。
示例2:通过索引选择多行
以下代码显示了如何通过数据框中的索引选择多行:
#select third, fourth, and sixth rows
df[c(3, 4, 6), ]
team points assists rebounds
3 to 14 5 7
4 B 29 4 6
6 B 30 10 11
仅返回第三、第四和第六行中的值。
示例 3:按索引选择行范围
以下代码显示如何选择数据框中的第 2 行到第 5 行:
#select rows 2 through 5
df[2:5, ]
team points assists rebounds
2 A 14 5 7
3 to 14 5 7
4 B 29 4 6
5 B 25 12 10
返回第 2 行到第 5 行中的所有值。
其他资源
以下教程解释了如何在 R 中执行其他常见任务: