Rでパイプ演算子を使おうとしたら表記のエラー
調べてみたらdplyrかmagrittrのライブラリをロードする必要があるとのこと
# 以下のどちらか1つを実行
library(magrittr)
library(dplyr)
これでパイプ演算子 %>% が使えるようになった
参考
Error: could not find function "%>%"
I'm running an example in R, going through the steps and everything is working so far except for this code produces an e...
コメント