R !!!effects {{outline}} ---- !!基本的な使い方 !効果のあるものすべて allEffects plot(allEffects(model)) plot(allEffects(model), multiline=T) *複数の線を重ねて描く plot(allEffects(model), multiline=T, confint = list(style = "auto")) !!発展 !予測変数の効果の可視化 *出来上がったモデルにおいて、特定の説明変数がどのように結果を予測するかを可視化 plot(predictorEffects(model)) plot(predictorEffects(model), multiline=T) *複数の線を重ねて描く !軸の工夫 !特定の変数の効果 plot(Effect(c("変数","変数"), model)) plot(Effect(c("変数","変数"), model), multiline=T) *複数の線を重ねて描く !!参考例 https://yuzar-blog.netlify.app/posts/2021-01-01-how-to-visualize-models-their-assumptions-and-post-hocs/