Index
Module Index
Search Page
cast_to_itype(series, itype[, policy, err, …])
cast_to_itype
Cast a series (more explicit the type of the index) to fit the itype of a dios.
get_itype(obj)
get_itype
Return the according Itype, by any of any possible user input, like
is_itype(obj, itype)
is_itype
Check if obj is a instance of the given itype or its str-alias was given
is_itype_like(obj, itype)
is_itype_like
Check if obj is a subclass or a instance of the given itype or any of its subtypes
is_itype_subtype(obj, itype)
is_itype_subtype
Check if obj is a subclass or a instance of a subclass of the given itype
pprint_dios(dios[, max_rows, min_rows, …])
pprint_dios
to_dios(obj)
to_dios
CastPolicy
DictOfSeries([data, columns, index, itype, …])
DictOfSeries
A data frame where every column has its own index.
DtItype()
DtItype
FloatItype()
FloatItype
IntItype()
IntItype
ItypeCastError
ItypeCastWarning
ItypeWarning
NumItype()
NumItype
ObjItype()
ObjItype
Opts
OptsFields
storage class for the keys in dios_options
dios_options
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).