Rのtibbleで文字列を含む行を選択する方法
dplyrパッケージを使用する方法:library(dplyr) # tibbleの作成 df <- tibble(col1 = c("apple", "banana", "orange"), col2 = c("cat", "dog", "elephant")) # 特定の文字列を含む行を選択 result <- df %>% filter(str_detect(col1, "na")) # 結果の表示 print(result)>>More
dplyrパッケージを使用する方法:library(dplyr) # tibbleの作成 df <- tibble(col1 = c("apple", "banana", "orange"), col2 = c("cat", "dog", "elephant")) # 特定の文字列を含む行を選択 result <- df %>% filter(str_detect(col1, "na")) # 結果の表示 print(result)>>More