如何在 r 中修复:找不到函数“%>%”
在 R 中您可能遇到的错误是:
Error: could not find function "%>%"
当您尝试在 R 中使用“ %>% ”函数而不首先加载dplyr包时,经常会发生此错误。
要修复此错误,只需先加载 dplyr 包:
library (dplyr)
以下示例展示了如何在实践中纠正此错误。
如何重现错误
假设我们在 R 中有以下数据框,显示不同球队的不同篮球运动员的得分:
#create data frame
df <- data. frame (team=c('A', 'A', 'A', 'A', 'B', 'B', 'B', 'B'),
points=c(6, 14, 15, 19, 22, 25, 39, 34))
#view data frame
df
team points
1 to 6
2 to 14
3 to 15
4 to 19
5 B 22
6 B 25
7 B 39
8 B 34
现在假设我们尝试使用“ %>% ”函数来查找每支球队球员的平均得分:
#find average points scored by players on each team
df %>%
group_by (team) %>%
summarize (avg_points = mean(points))
我们收到错误,因为我们从未加载 dplyr 包。
如何修复错误
修复此错误的方法是在使用“ %>% ”函数之前简单地加载 dplyr 包:
library (dplyr)
#find average points scored by players on each team
df %>%
group_by (team) %>%
summarize (avg_points = mean(points))
# A tibble: 2 x 2
team avg_points
1 A 13.5
2 B 30
输出显示了每支球队球员的平均得分,我们没有收到任何错误,因为我们在使用“ %>% ”函数之前加载了 dplyr 包。
其他资源
以下教程解释了如何修复 R 中的其他常见错误:
如何在 R 中修复:找不到函数“ggplot”
如何修复 R:选择未使用的参数时出错
如何在 R 中修复:名称与以前的名称不匹配