R !!!effects !効果のあるものすべて plot(allEffects(model)) plot(allEffects(model), multiline=T) *複数の線を重ねて描く !予測 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/