Indices and tables¶
dios Package¶
Functions¶
|
Cast a series (more explicit the type of the index) to fit the itype of a dios. |
|
Return the according Itype, by any of any possible user input, like |
|
Check if obj is a instance of the given itype or its str-alias was given |
|
Check if obj is a subclass or a instance of the given itype or any of its subtypes |
|
Check if obj is a subclass or a instance of a subclass of the given itype |
|
|
|
Classes¶
|
A data frame where every column has its own index. |
|
|
|
|
|
|
|
|
storage class for the keys in |
Variables¶
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list.For example: dict(one=1, two=2). |