【发布时间】:2021-04-18 21:31:57
【问题描述】:
我正在处理一些数据并尝试进行一些条件过滤。我想编写一个语句来评估一个变量是否等于一个数字(在本例中为 1),如果是,则根据另一列的值进行过滤。结果应该是所有 AtBatPitchSequences == 1 也有 PitchType == "FA"。
- 请注意,如果 AtBatPitchSequence > 1 则不应被过滤,因此第 4 行应保留在过滤器之后
我的数据(firsttwopitches)如下所示:
YearID GameID GamePitchSequen~ PAofInning AtBatPitchSeque~ Inning Balls Strikes PitchType
<dbl> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <chr>
1 2018 DFCBC~ 1 1 1 1 0 0 FA
2 2018 DFCBC~ 2 1 2 1 1 0 FA
3 2018 DFCBC~ 4 2 1 1 0 0 FA
4 2018 DFCBC~ 5 2 2 1 0 1 SI
5 2018 DFCBC~ 8 3 1 1 0 0 FA
6 2018 DFCBC~ 9 3 2 1 0 1 FA
为了解决这个问题,我尝试使用 if 语句:
library(tidyverse)
firsttwopitches %>%
if (AtBatPitchSequence == 1) {
filter(PitchType == "FA")
}
但是,这会引发错误和警告:
Error in if (.) AtBatPitchSequence == 1 else { :
argument is not interpretable as logical
In addition: Warning message:
In if (.) AtBatPitchSequence == 1 else { :
the condition has length > 1 and only the first element will be used
我不明白为什么我的论点不能被解释为合乎逻辑的。在我看来,它应该评估 AtBatPitchSequence 是否等于 1,然后转到下一行。另外,警告信息是什么意思?如果通过更正我的 if 语句来处理此警告,请不要担心,但我仍然是新手,并且正在尝试更好地调试我自己的工作。我通读了这个Error in if/while (condition) : argument is not interpretable as logical 问题和其他问题,试图找出我的错误,但没有成功。
非常感谢
【问题讨论】:
标签: r dplyr data-munging