【R】poorman
2021年3月29日
1. はじめに
poorman
は、データ操作のパッケージです。dplyrのレプリカのような感じでパイプ%>%も使えます。
2. インストール
CRANからインストールできます。
install.packages("poorman")
3. 使ってみる
まさに、dplyrです。
library(poorman, warn.conflicts = FALSE) mtcars %>% select(mpg, cyl, disp, gear) %>% group_by(cyl, gear) %>% summarise(mean_disp = mean(disp), mean_mpg = mean(mpg)) %>% ungroup() %>% slice_head(n=5)
cyl gear mean_disp mean_mpg
1 4 3 120.100 21.500
2 4 4 102.625 26.925
3 4 5 107.700 28.200
4 6 3 241.500 19.750
5 6 4 163.800 19.750
4. さいごに
poormanとdplyrの同時利用もできるようです。dplyrと違い、依存関係なしで単独で動かせるのは良いですね。