Unified API
pnkraemer opened this issue · 0 comments
pnkraemer commented
I think at the moment, this API is not perfectly unified. For example, the functions in figsize
return tuples, almost all other function return dictionaries compatible with plt.rcParams.update
or plt.rc_context
, and there are the context functions that compute the context straightaway.
In my opinion, it would be way more intuitive if all functions (except for the RBG constants in color
) would return outputs of the same types: dicts compatible with the plt.rcParam functions. This would entail the following changes
context.py
becomes something likebundles.py
: the bundling functionality (i.e., all icml configs in one) remain there, but they can now be called flexibly with eitherplt.rc_context
orplt.rcParams.update
figsize.py
would return a dictionary with afigure.figsize
key, which can then be called straightforwardly.