- class sakkara.model.composable.hierarchical.base.HierarchicalComponent(name: str | None, group: str | Tuple[str, ...] | None, subcomponents: Dict[str, T])#
Base class for hierarchical components, i.e., components that may be defined on one or several column, composed by other
ModelComponentobjects- Parameters:
name – Name of the corresponding variable to register in PyMC.
group – Group of which the component is defined for.
members – Subset of members of column the component is defined for.
subcomponents – Dict of underlying
ModelComponentobjects.