Created
June 17, 2018 07:36
-
-
Save TheRochVoices/50fd36436757212eac71ea7a2d437958 to your computer and use it in GitHub Desktop.
Changing plot sizes
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
#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