Skip to content

Instantly share code, notes, and snippets.

@TheRochVoices
Created June 17, 2018 07:36
Show Gist options
  • Save TheRochVoices/50fd36436757212eac71ea7a2d437958 to your computer and use it in GitHub Desktop.
Save TheRochVoices/50fd36436757212eac71ea7a2d437958 to your computer and use it in GitHub Desktop.
Changing plot sizes
#seaborn
plt.subplots(figsize=(16,6))
#matplotlib
from pylab import rcParams
rcParams['figure.figsize'] = 8, 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment