We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fdd257 commit cc45cedCopy full SHA for cc45ced
README.md
@@ -296,6 +296,15 @@ Matplotlib
296
[savefig](http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.savefig)
297
command, e.g. `savefig("plot.svg")`.
298
299
+## Modifying matplotlib.rcParams
300
+You can mutate the `rcParams` dictionary that Matplotlib uses for global parameters following this example:
301
+```jl
302
+rcParams = PyPlot.PyDict(PyPlot.matplotlib."rcParams")
303
+rcParams["font.size"] = 15
304
+```
305
+(If you instead used `PyPlot.matplotlib.rcParams`, PyCall would make a copy of the dictionary
306
+so that the Python `rcParams` wouldn't be modified.)
307
+
308
## Author
309
310
This module was written by [Steven G. Johnson](http://math.mit.edu/~stevenj/).
0 commit comments