Indices and tables

dios Package

Functions

cast_to_itype(series, itype[, policy, err, …])

Cast a series (more explicit the type of the index) to fit the itype of a dios.

get_itype(obj)

Return the according Itype, by any of any possible user input, like

is_itype(obj, itype)

Check if obj is a instance of the given itype or its str-alias was given

is_itype_like(obj, itype)

Check if obj is a subclass or a instance of the given itype or any of its subtypes

is_itype_subtype(obj, itype)

Check if obj is a subclass or a instance of a subclass of the given itype

pprint_dios(dios[, max_rows, min_rows, …])

to_dios(obj)

Classes

CastPolicy

DictOfSeries([data, columns, index, itype, …])

A data frame where every column has its own index.

DtItype()

FloatItype()

IntItype()

ItypeCastError

ItypeCastWarning

ItypeWarning

NumItype()

ObjItype()

Opts

OptsFields

storage class for the keys in dios_options

Variables

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).