Reputation: 575
I'm trying to update my matplotlib rcParams. According to http://matplotlib.org/users/customizing.html, the option should be present, but it is not. These are the items I can find in my rcParam file:
u'figure.autolayout': False,
u'figure.dpi': 80.0,
u'figure.edgecolor': u'w',
u'figure.facecolor': u'0.75',
u'figure.figsize': [46.666666666666664, 35.0],
u'figure.frameon': True,
u'figure.max_open_warning': 20,
u'figure.subplot.bottom': 0.1,
u'figure.subplot.hspace': 0.2,
u'figure.subplot.left': 0.125,
u'figure.subplot.right': 0.9,
u'figure.subplot.top': 0.9,
u'figure.subplot.wspace': 0.2,
Has this feature been removed or is it somehow hidden?
Upvotes: 2
Views: 529