We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't get any intended effect out of changing matplotlib's rcParams
strangely enough, whenever I change figure.dpi it ends up changing the default color of the line I have it make
figure.dpi
plt.rcParams['figure.dpi'] = 200 x = np.arange(10) y = np.random.uniform(10, size=10) plt.plot(x,y) plt.show() plt.rcParams['figure.dpi'] = 100 plt.plot(x,y) plt.show()
Also, if I run ^that example twice without calling plt.clf() the figure doesn't clear it's memory and shows the old x/y values alongside the new
plt.clf()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can't get any intended effect out of changing matplotlib's rcParams
strangely enough, whenever I change
figure.dpi
it ends up changing the default color of the line I have it makeAlso, if I run ^that example twice without calling
plt.clf()
the figure doesn't clear it's memory and shows the old x/y values alongside the newThe text was updated successfully, but these errors were encountered: