Skip to content

Instantly share code, notes, and snippets.

@emredjan
Last active April 23, 2018 17:14
Show Gist options
  • Save emredjan/4f2dd5f48fc5f8696f06e35c407f37b9 to your computer and use it in GitHub Desktop.
Save emredjan/4f2dd5f48fc5f8696f06e35c407f37b9 to your computer and use it in GitHub Desktop.
Emulating R regression plots in Python
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