Pingouin
https://gyazo.com/af85cb1433b9611759b3018534293571
ロゴがかわいい
mrsekut.icon
https://github.com/raphaelvallat/pingouin
https://pingouin-stats.org/build/html/index.html
検定とかできるやつ
code:py
import pingouin as pg
# 例: ピアソンの相関検定
data = pg.read_dataset('iris')
correlation = pg.corr(data
'sepal_width'
, data
'sepal_length'
)
print(correlation)