Last active
April 23, 2018 17:14
-
-
Save emredjan/4f2dd5f48fc5f8696f06e35c407f37b9 to your computer and use it in GitHub Desktop.
Emulating R regression plots in Python
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
model = lm(mpg ~ . - name, data=Auto) | |
par(mfrow=c(2,2)) # Plot 4 plots in same screen | |
plot(model) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment