Introduction To Computation and Programming Using Python, Revised - Guttag, John v..162
Introduction To Computation and Programming Using Python, Revised - Guttag, John v..162
It is also possible to change the default values, which are known as rc settings.
(The name rc is derived from the .rc file extension used for runtime
configuration files in Unix.) These values are stored in a dictionary-like variable
that can be accessed via the name pylab.rcParams. So, for example, you can set
the default line width to 6 points61 by executing the code
pylab.rcParams['lines.linewidth'] = 6.
145