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.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.ColumnConfig = TypeVar('ColumnConfig', Name, DType)
module-attribute
Represents a column config. It can be Name or DType.