3.11.14.2.1. statsmodels.stats.multitest.OrderedDict

class statsmodels.stats.multitest.OrderedDict(*args, **kwds)[source]

Dictionary that remembers insertion order

Initialize an ordered dictionary. Signature is the same as for regular dictionaries, but keyword arguments are not recommended because their insertion order is arbitrary.

__init__(*args, **kwds)[source]

Initialize an ordered dictionary. Signature is the same as for regular dictionaries, but keyword arguments are not recommended because their insertion order is arbitrary.

3.11.14.2.1.1. Methods

__init__(*args, **kwds) Initialize an ordered dictionary.
clear(() -> None.  Remove all items from od.)
copy(() -> a shallow copy of od)
fromkeys((S[, ...) and values equal to v (which 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 (key, value) pairs in od)
iteritems() od.iteritems -> an iterator over the (key, value) items in od
iterkeys(() -> an iterator over the keys in od)
itervalues() od.itervalues -> an iterator over the values in od
keys(() -> list of keys in od)
pop((k[,d]) -> v, ...) If key is not found, d is returned if given, otherwise KeyError is raised.
popitem(() -> (k, v), ...) Pairs are returned in LIFO order if last is true or FIFO order if false.
setdefault((k[,d]) -> od.get(k,d), ...)
update((E, ...) If E is a dict instance, does: for k in E: od[k] = E[k]
values(() -> list of values in od)
viewitems(...)
viewkeys(...)
viewvalues(...)