mpl.RcParams¶
-
class
mpl.RcParams(*args, **kwargs)[source]¶ A dictionary object including validation
validating functions are defined and associated with rc parameters in
matplotlib.rcsetup
Methods¶
__init__(*args, **kwargs) |
|
clear(() -> None. Remove all items from D.) |
|
copy(() -> a shallow copy of D) |
|
find_all(pattern) |
Return the subset of this RcParams dictionary whose keys match, using re.search(), the given pattern. |
fromkeys(...) |
v defaults to None. |
get((k[,d]) -> D[k] if k in D, ...) |
|
has_key((k) -> True if D has a key k, else False) |
|
items(() -> list of D’s (key, value) pairs, ...) |
|
iteritems(() -> an iterator over the (key, ...) |
|
iterkeys(() -> an iterator over the keys of D) |
|
itervalues(...) |
|
keys() |
Return sorted list of keys. |
pop((k[,d]) -> v, ...) |
If key is not found, d is returned if given, otherwise KeyError is raised |
popitem(() -> (k, v), ...) |
2-tuple; but raise KeyError if D is empty. |
setdefault((k[,d]) -> D.get(k,d), ...) |
|
update(*args, **kwargs) |
|
values() |
Return values in order of sorted keys. |
viewitems(...) |
|
viewkeys(...) |
|
viewvalues(...) |
Attributes¶
msg_depr |
|
msg_depr_ignore |
|
validate |