if()
を使用できます mutate()
内のステートメント dplyrのdb内データフレーム:
df <- df %>%
mutate( income_topcoded = if (income > topcode) income else topcode)
grepl()
を使用する限り 行く...まあ、あなたはできません。ただし、SQLをlike
で使用できます。 演算子:
df <- df %>%
filter( topcode %like% "ABC%" )