Last active
December 24, 2018 08:32
scale()関数から出力される結果の形式について (R技術メモ)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 再度インタラクションプロット作成 | |
fit_iris <- lm(Petal.Length ~ Petal.Width_centered * Species, data = mydf) | |
summary(fit_iris) | |
interact_plot(fit_iris, pred = Petal.Width_centered, modx = Species, plot.points = TRUE) # 成功 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment