Type alias
ipyvizzu.data.converters.numpy.type_alias
This module provides typing aliases for numpy converter.
ipyvizzu.data.converters.numpy.type_alias.Index = int
module-attribute
Represents the index of a column.
ipyvizzu.data.converters.numpy.type_alias.Name = str
module-attribute
Represents the name of a column.
ipyvizzu.data.converters.numpy.type_alias.DType = type
module-attribute
Represents the dtype of a column.
ipyvizzu.data.converters.numpy.type_alias.Unit = str
module-attribute
Represents the unit of a column.
ipyvizzu.data.converters.numpy.type_alias.ColumnName = Union[Name, Dict[Index, Name]]
module-attribute
Represents a column name. It is a dictionary of Index:Name pairs or for single-dimensional arrays, it can be just a Name.
ipyvizzu.data.converters.numpy.type_alias.ColumnDtype = Union[DType, Dict[Index, DType]]
module-attribute
Represents a column dtype. It is a dictionary of Index:DType pairs or for single-dimensional arrays, it can be just a DType.
ipyvizzu.data.converters.numpy.type_alias.ColumnUnit = Union[Unit, Dict[Index, Unit]]
module-attribute
Represents a column unit. It is a dictionary of Index:Unit pairs or for single-dimensional arrays, it can be just a Unit.
ipyvizzu.data.converters.numpy.type_alias.ColumnConfig = TypeVar('ColumnConfig', Name, DType, Unit)
module-attribute
Represents a column config. It can be Name, DType or Unit.