gpt4 book ai didi

sql - 如何将 tidyverse 中的列突变为 'if text contains text string'

转载 作者:行者123 更新时间:2023-12-02 03:08:20 24 4
gpt4 key购买 nike

如果物种包含 %setosa%,如何编辑此代码以替换 ==

new_iris <- iris %>% 
mutate(flag = ifelse(Species == "setosa", 1, 0) # add a new column
)

最佳答案

要留在 tidyverse 中,您可以使用 stringr。

library(dplyr)
library(stringr)

iris %>%
mutate(flag = str_detect(Species, "setosa"))

关于sql - 如何将 tidyverse 中的列突变为 'if text contains text string',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58381874/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com