【R】parameters
2021年8月30日
1. はじめに
parameters
は、統計解析を手伝ってくれるeasystat
パッケージの一つで、様々なモデルのパラメータ処理を手助けしてくれるパッケージです。
2. インストール
CRANからインストールできます。
install.packages("parameters")
3. つかってみる
library(parameters) library(modeldata) data(penguins) head(penguins) model <- lm(body_mass_g ~ bill_length_mm + bill_depth_mm + flipper_length_mm, data = penguins) model_parameters(model)
> model_parameters(model)
Parameter | Coefficient | SE | 95% CI | t(338) | p
---------------------------------------------------------------------------------
(Intercept) | -6424.76 | 561.47 | [-7529.18, -5320.35] | -11.44 | < .001
bill length mm | 4.16 | 5.33 | [ -6.32, 14.64] | 0.78 | 0.435
bill depth mm | 20.05 | 13.69 | [ -6.89, 46.99] | 1.46 | 0.144
flipper length mm | 50.27 | 2.48 | [ 45.40, 55.14] | 20.29 | < .001
describe_distribution(penguins)
> describe_distribution(penguins)
Variable | Mean | SD | IQR | Range | Skewness | Kurtosis | n | n_Missing
-----------------------------------------------------------------------------------------------------------
bill_length_mm | 43.92 | 5.46 | 9.30 | [32.10, 59.60] | 0.05 | -0.88 | 342 | 2
bill_depth_mm | 17.15 | 1.97 | 3.12 | [13.10, 21.50] | -0.14 | -0.91 | 342 | 2
flipper_length_mm | 200.92 | 14.06 | 23.25 | [172.00, 231.00] | 0.35 | -0.98 | 342 | 2
body_mass_g | 4201.75 | 801.95 | 1206.25 | [2700.00, 6300.00] | 0.47 | -0.72 | 342 | 2
4. さいごに
このeasystat
のプロジェクトは、様々なパッケージを提供してくれて、面白いですね。