Source code for pymc_marketing.mmm.base

#   Copyright 2024 The PyMC Labs Developers
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
"""Base class for Marketing Mix Models (MMM)."""

from collections.abc import Callable
from inspect import (
    getattr_static,
    isdatadescriptor,
    isgetsetdescriptor,
    ismemberdescriptor,
    ismethoddescriptor,
)
from typing import Any

import arviz as az
import matplotlib.pyplot as plt
import matplotlib.ticker as mtick
import numpy as np
import pandas as pd
import pymc as pm
from numpy.typing import NDArray
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import FunctionTransformer
from xarray import DataArray, Dataset

from pymc_marketing.mmm.utils import (
    apply_sklearn_transformer_across_dim,
    transform_1d_array,
)
from pymc_marketing.mmm.validating import (
    ValidateChannelColumns,
    ValidateDateColumn,
    ValidateTargetColumn,
)
from pymc_marketing.model_builder import ModelBuilder

__all__ = ["MMMModelBuilder", "BaseValidateMMM"]
from pydantic import Field, validate_call


[docs] class MMMModelBuilder(ModelBuilder): """Base class for Marketing Mix Models (MMM).""" model: pm.Model _model_type = "BaseMMM" version = "0.0.2"
[docs] @validate_call def __init__( self, date_column: str = Field(..., description="Column name of the date variable."), channel_columns: list[str] = Field( min_length=1, description="Column names of the media channel variables." ), model_config: dict | None = Field(None, description="Model configuration."), sampler_config: dict | None = Field(None, description="Sampler configuration."), ) -> None: self.date_column: str = date_column self.channel_columns: list[str] | tuple[str] = channel_columns self.n_channel: int = len(channel_columns) self.X: pd.DataFrame self.y: pd.Series | np.ndarray self._time_resolution: int self._time_index: NDArray[np.int_] self._time_index_mid: int self._fit_result: az.InferenceData self._posterior_predictive: az.InferenceData super().__init__(model_config=model_config, sampler_config=sampler_config)
@property def methods(self) -> list[Any]: """Get all methods of the object.""" maybe_methods = [getattr_static(self, attr) for attr in dir(self)] return [ method for method in maybe_methods if callable(method) and not ( ismethoddescriptor(method) or isdatadescriptor(method) or isgetsetdescriptor(method) or ismemberdescriptor(method) ) ] @property def validation_methods( self, ) -> tuple[ list[ Callable[["MMMModelBuilder", pd.DataFrame | pd.Series | np.ndarray], None] ], list[ Callable[["MMMModelBuilder", pd.DataFrame | pd.Series | np.ndarray], None] ], ]: """A property that provides validation methods for features ("X") and the target variable ("y"). This property scans the methods of the object and returns those marked for validation. The methods are marked by having a _tags dictionary attribute,with either "validation_X" or "validation_y" set to True. The "validation_X" tag indicates a method used for validating features, and "validation_y" indicates a method used for validating the target variable. Returns ------- tuple of list of Callable[["MMMModelBuilder", pd.DataFrame], None] A tuple where the first element is a list of methods for "X" validation, and the second element is a list of methods for "y" validation. """ return ( [ method for method in self.methods if getattr(method, "_tags", {}).get("validation_X", False) ], [ method for method in self.methods if getattr(method, "_tags", {}).get("validation_y", False) ], )
[docs] def validate( self, target: str, data: pd.DataFrame | pd.Series | np.ndarray ) -> None: """Validate the input data based on the specified target type. This function loops over the validation methods specified for the target type and applies them to the input data. Parameters ---------- target : str The type of target to be validated. Expected values are "X" for features and "y" for the target variable. data : Union[pd.DataFrame, pd.Series, np.ndarray] The input data to be validated. Raises ------ ValueError If the target type is not "X" or "y", a ValueError will be raised. """ if target not in ["X", "y"]: raise ValueError("Target must be either 'X' or 'y'") if target == "X": validation_methods = self.validation_methods[0] elif target == "y": validation_methods = self.validation_methods[1] for method in validation_methods: method(self, data)
@property def preprocessing_methods( self, ) -> tuple[ list[ Callable[ ["MMMModelBuilder", pd.DataFrame | pd.Series | np.ndarray], pd.DataFrame | pd.Series | np.ndarray, ] ], list[ Callable[ ["MMMModelBuilder", pd.DataFrame | pd.Series | np.ndarray], pd.DataFrame | pd.Series | np.ndarray, ] ], ]: """A property that provides preprocessing methods for features ("X") and the target variable ("y"). This property scans the methods of the object and returns those marked for preprocessing. The methods are marked by having a _tags dictionary attribute, with either "preprocessing_X" or "preprocessing_y" set to True. The "preprocessing_X" tag indicates a method used for preprocessing features, and "preprocessing_y" indicates a method used for preprocessing the target variable. Returns ------- tuple of list of Callable[["MMMModelBuilder", pd.DataFrame], pd.DataFrame] A tuple where the first element is a list of methods for "X" preprocessing, and the second element is a list of methods for "y" preprocessing. """ return ( [ method for method in self.methods if getattr(method, "_tags", {}).get("preprocessing_X", False) ], [ method for method in self.methods if getattr(method, "_tags", {}).get("preprocessing_y", False) ], )
[docs] def preprocess( self, target: str, data: pd.DataFrame | pd.Series | np.ndarray ) -> pd.DataFrame | pd.Series | np.ndarray: """Preprocess the provided data according to the specified target. This method applies preprocessing methods to the data ("X" or "y"), which are specified in the preprocessing_methods property of this object. It iteratively applies each method in the appropriate list (either for "X" or "y") to the data. Parameters ---------- target : str Indicates whether the data represents features ("X") or the target variable ("y"). data : Union[pd.DataFrame, pd.Series, np.ndarray] The data to be preprocessed. Returns ------- Union[pd.DataFrame, pd.Series, np.ndarray] The preprocessed data. Raises ------ ValueError If the target is neither "X" nor "y". Example ------- >>> data = pd.DataFrame({"x1": [1, 2, 3], "y": [4, 5, 6]}) >>> self.preprocess("X", data) """ data_cp = data.copy() if target == "X": for method in self.preprocessing_methods[0]: data_cp = method(self, data_cp) elif target == "y": for method in self.preprocessing_methods[1]: data_cp = method(self, data_cp) else: raise ValueError("Target must be either 'X' or 'y'") return data_cp
[docs] def get_target_transformer(self) -> Pipeline: """Return the target transformer pipeline used for preprocessing the target variable. Returns ------- Pipeline """ try: return self.target_transformer # type: ignore except AttributeError: identity_transformer = FunctionTransformer() return Pipeline(steps=[("scaler", identity_transformer)])
@property def prior(self) -> Dataset: """Get the prior data.""" if self.idata is None or "prior" not in self.idata: raise RuntimeError( "The model hasn't been sampled yet, call .sample_prior_predictive() first" ) return self.idata["prior"] @property def prior_predictive(self) -> Dataset: """Get the prior predictive data.""" if self.idata is None or "prior_predictive" not in self.idata: raise RuntimeError( "The model hasn't been sampled yet, call .sample_prior_predictive() first" ) return self.idata["prior_predictive"] @property def fit_result(self) -> Dataset: """Get the posterior data.""" if self.idata is None or "posterior" not in self.idata: raise RuntimeError("The model hasn't been fit yet, call .fit() first") return self.idata["posterior"] @property def posterior_predictive(self) -> Dataset: """Get the posterior predictive data.""" if self.idata is None or "posterior_predictive" not in self.idata: raise RuntimeError( "The model hasn't been fit yet, call .sample_posterior_predictive() first" ) return self.idata["posterior_predictive"]
[docs] def plot_prior_predictive(self, **plt_kwargs: Any) -> plt.Figure: """Plot the prior predictive data. Parameters ---------- **plt_kwargs Keyword arguments passed to `plt.subplots`. Returns ------- plt.Figure """ prior_predictive_data: az.InferenceData = self.prior_predictive likelihood_hdi_94: DataArray = az.hdi(ary=prior_predictive_data, hdi_prob=0.94)[ self.output_var ] likelihood_hdi_50: DataArray = az.hdi(ary=prior_predictive_data, hdi_prob=0.50)[ self.output_var ] fig, ax = plt.subplots(**plt_kwargs) if self.X is not None and self.y is not None: ax.fill_between( x=np.asarray(self.X[self.date_column]), y1=likelihood_hdi_94[:, 0], y2=likelihood_hdi_94[:, 1], color="C0", alpha=0.2, label=r"$94\%$ HDI", ) ax.fill_between( x=np.asarray(self.X[self.date_column]), y1=likelihood_hdi_50[:, 0], y2=likelihood_hdi_50[:, 1], color="C0", alpha=0.3, label=r"$50\%$ HDI", ) ax.plot( np.asarray(self.X[self.date_column]), np.asarray(self.preprocessed_data["y"]), # type: ignore color="black", ) ax.set( title="Prior Predictive Check", xlabel="date", ylabel=self.output_var ) else: raise RuntimeError( "The model hasn't been fit yet, call .fit() first with X and y data." ) return fig
[docs] def plot_posterior_predictive( self, original_scale: bool = False, ax: plt.Axes = None, **plt_kwargs: Any ) -> plt.Figure: """Plot posterior distribution from the model fit. Parameters ---------- original_scale : bool, optional Whether to plot in the original scale. ax : plt.Axes, optional Matplotlib axis object. **plt_kwargs Keyword arguments passed to `plt.subplots`. Returns ------- plt.Figure """ try: posterior_predictive_data: Dataset = self.posterior_predictive except Exception as e: raise RuntimeError( "Make sure the model has bin fitted and the posterior predictive has been sampled!" ) from e target_to_plot = np.asarray( self.y if original_scale else transform_1d_array(self.get_target_transformer().transform, self.y) ) if len(target_to_plot) != len(posterior_predictive_data.date): raise ValueError( "The length of the target variable doesn't match the length of the date column. " "If you are predicting out-of-sample, please overwrite `self.y` with the " "corresponding (non-transformed) target variable." ) if ax is None: fig, ax = plt.subplots(**plt_kwargs) else: fig = ax.figure if original_scale: posterior_predictive_data = apply_sklearn_transformer_across_dim( data=posterior_predictive_data, func=self.get_target_transformer().inverse_transform, dim_name="date", ) for hdi_prob, alpha in zip((0.94, 0.50), (0.2, 0.4), strict=True): likelihood_hdi: DataArray = az.hdi( ary=posterior_predictive_data, hdi_prob=hdi_prob )[self.output_var] ax.fill_between( x=posterior_predictive_data.date, y1=likelihood_hdi[:, 0], y2=likelihood_hdi[:, 1], color="C0", alpha=alpha, label=f"{hdi_prob:.0%} HDI", ) ax.plot( np.asarray(posterior_predictive_data.date), target_to_plot, color="black", label="Observed", ) ax.legend() ax.set( title="Posterior Predictive Check", xlabel="date", ylabel=self.output_var, ) return fig
[docs] def get_errors(self, original_scale: bool = False) -> DataArray: """Get model errors posterior distribution. errors = true values - predicted Parameters ---------- original_scale : bool, optional Whether to plot in the original scale. Returns ------- DataArray """ try: posterior_predictive_data: Dataset = self.posterior_predictive except Exception as e: raise RuntimeError( "Make sure the model has bin fitted and the posterior predictive has been sampled!" ) from e target_array = np.asarray( transform_1d_array(self.get_target_transformer().transform, self.y) ) if len(target_array) != len(posterior_predictive_data.date): raise ValueError( "The length of the target variable doesn't match the length of the date column. " "If you are computing out-of-sample errors, please overwrite `self.y` with the " "corresponding (non-transformed) target variable." ) target = ( pd.Series(target_array, index=self.posterior_predictive.date) .rename_axis("date") .to_xarray() ) errors = ( (target - posterior_predictive_data)[self.output_var] .rename("errors") .transpose(..., "date") ) if original_scale: return apply_sklearn_transformer_across_dim( data=errors, func=self.get_target_transformer().inverse_transform, dim_name="date", ) return errors
[docs] def plot_errors( self, original_scale: bool = False, ax: plt.Axes = None, **plt_kwargs: Any ) -> plt.Figure: """Plot model errors by taking the difference between true values and predicted. errors = true values - predicted Parameters ---------- original_scale : bool, optional Whether to plot in the original scale. ax : plt.Axes, optional Matplotlib axis object. **plt_kwargs Keyword arguments passed to `plt.subplots`. Returns ------- plt.Figure """ errors = self.get_errors(original_scale=original_scale) if ax is None: fig, ax = plt.subplots(**plt_kwargs) else: fig = ax.figure for hdi_prob, alpha in zip((0.94, 0.50), (0.2, 0.4), strict=True): errors_hdi = az.hdi(ary=errors, hdi_prob=hdi_prob) ax.fill_between( x=self.posterior_predictive.date, y1=errors_hdi["errors"].sel(hdi="lower"), y2=errors_hdi["errors"].sel(hdi="higher"), color="C3", alpha=alpha, label=f"${100 * hdi_prob}\\%$ HDI", ) ax.plot( self.posterior_predictive.date, errors.mean(dim=("chain", "draw")).to_numpy(), color="C3", label="Errors Mean", ) ax.axhline(y=0.0, linestyle="--", color="black", label="zero") ax.legend() ax.set( title="Errors Posterior Distribution", xlabel="date", ylabel="true - predictions", ) return fig
def _format_model_contributions(self, var_contribution: str) -> DataArray: contributions = az.extract( self.fit_result, var_names=[var_contribution], combined=False, ) contracted_dims = [ d for d in contributions.dims if d not in ["chain", "draw", "date"] ] return contributions.sum(contracted_dims) if contracted_dims else contributions
[docs] def plot_components_contributions(self, **plt_kwargs: Any) -> plt.Figure: """Plot the target variable and the posterior predictive model components. We can plot the target variable and the posterior predictive model components in the scaled space or the original space. **plt_kwargs Additional keyword arguments to pass to `plt.subplots`. Returns ------- plt.Figure """ channel_contributions = self._format_model_contributions( var_contribution="channel_contributions" ) means = [channel_contributions.mean(["chain", "draw"])] contribution_vars = [ az.hdi(channel_contributions, hdi_prob=0.94).channel_contributions ] for arg, var_contribution in zip( ["control_columns", "yearly_seasonality"], ["control_contributions", "fourier_contributions"], strict=True, ): if getattr(self, arg, None): contributions = self._format_model_contributions( var_contribution=var_contribution ) means.append(contributions.mean(["chain", "draw"])) contribution_vars.append( az.hdi(contributions, hdi_prob=0.94)[var_contribution] ) fig, ax = plt.subplots(**plt_kwargs) for i, (mean, hdi, var_contribution) in enumerate( zip( means, contribution_vars, [ "channel_contribution", "control_contribution", "fourier_contribution", ], strict=False, ) ): if self.X is not None: ax.fill_between( x=self.X[self.date_column], y1=hdi.isel(hdi=0), y2=hdi.isel(hdi=1), color=f"C{i}", alpha=0.25, label=f"$94\\%$ HDI ({var_contribution})", ) ax.plot( np.asarray(self.X[self.date_column]), np.asarray(mean), color=f"C{i}", ) if self.X is not None: intercept = az.extract( self.fit_result, var_names=["intercept"], combined=False ) if intercept.ndim == 2: # Intercept has a stationary prior intercept_hdi = np.repeat( a=az.hdi(intercept).intercept.data[None, ...], repeats=self.X[self.date_column].shape[0], axis=0, ) elif intercept.ndim == 3: # Intercept has a time-varying prior intercept_hdi = az.hdi(intercept).intercept.data ax.plot( np.asarray(self.X[self.date_column]), np.full(len(self.X[self.date_column]), intercept.mean().data), color=f"C{i + 1}", ) ax.fill_between( x=self.X[self.date_column], y1=intercept_hdi[:, 0], y2=intercept_hdi[:, 1], color=f"C{i + 1}", alpha=0.25, label="$94\\%$ HDI (intercept)", ) ax.plot( np.asarray(self.X[self.date_column]), np.asarray(self.preprocessed_data["y"]), # type: ignore label="scaled target", color="black", ) ax.legend(title="components", loc="center left", bbox_to_anchor=(1, 0.5)) ax.set( title="Posterior Predictive Model Components", xlabel="date", ylabel=self.output_var, ) return fig
[docs] def compute_channel_contribution_original_scale(self) -> DataArray: """Compute the channel contributions in the original scale of the target variable. Returns ------- DataArray """ channel_contribution = az.extract( data=self.fit_result, var_names=["channel_contributions"], combined=False ) # sklearn preprocessers expect 2-D arrays of (obs, features) # We need to treat all entries of channel_contribution as independent obs # so we flatten it, then apply the transform, and finally reshape back into its # original form return DataArray( np.reshape( self.get_target_transformer().inverse_transform( channel_contribution.data.flatten()[:, None] ), channel_contribution.shape, ), dims=channel_contribution.dims, coords=channel_contribution.coords, )
[docs] def compute_mean_contributions_over_time( self, original_scale: bool = False ) -> pd.DataFrame: """Get the contributions of each channel over time. Parameters ---------- original_scale : bool, optional Whether to return the contributions in the original scale of the target variable. If False, the contributions are returned in the scale of the transformed target variable. Defaults to False. Returns ------- pd.DataFrame A dataframe with the mean contributions of each channel and control variables over time. """ contributions_channel_over_time = ( az.extract( self.fit_result, var_names=["channel_contributions"], combined=True, ) .mean("sample") .to_dataframe() .squeeze() .unstack() ) contributions_channel_over_time.columns = self.channel_columns if getattr(self, "control_columns", None): contributions_control_over_time = ( az.extract( self.fit_result, var_names=["control_contributions"], combined=True, ) .mean("sample") .to_dataframe() .squeeze() .unstack() ) else: contributions_control_over_time = pd.DataFrame( index=contributions_channel_over_time.index ) if getattr(self, "yearly_seasonality", None): contributions_fourier_over_time = pd.DataFrame( az.extract( self.fit_result, var_names=["fourier_contributions"], combined=True, ) .mean("sample") .to_dataframe() .squeeze() .unstack() .sum(axis=1), columns=["yearly_seasonality"], ) else: contributions_fourier_over_time = pd.DataFrame( index=contributions_channel_over_time.index ) contributions_intercept_over_time = ( az.extract( self.fit_result, var_names=["intercept"], combined=True, ) .mean("sample") .to_numpy() ) all_contributions_over_time = ( contributions_channel_over_time.join(contributions_control_over_time) .join(contributions_fourier_over_time) .assign(intercept=contributions_intercept_over_time) ) if original_scale: all_contributions_over_time = pd.DataFrame( data=self.get_target_transformer().inverse_transform( all_contributions_over_time ), columns=all_contributions_over_time.columns, index=all_contributions_over_time.index, ) all_contributions_over_time.columns = ( all_contributions_over_time.columns.map( lambda x: f"channel_{x}" if isinstance(x, int) else x ) ) return all_contributions_over_time
[docs] def plot_grouped_contribution_breakdown_over_time( self, stack_groups: dict[str, list[str]] | None = None, original_scale: bool = False, area_kwargs: dict[str, Any] | None = None, **plt_kwargs: Any, ) -> plt.Figure: """Plot a time series area chart for all channel contributions. Since a chart like this can become quite crowded if you have many channels or control variables, you can group certain variables together using the `stack_groups` keyword. Parameters ---------- stack_groups : dict of {str: list of str}, optional Specifies which variables to group together. Example: passing { "Baseline": ["intercept"], "Offline": ["TV", "Radio"], "Online": ["Banners"] } results in a chart with three colors, one for Baseline, one for Online, and one for Offline. If `stack_groups` is None, the chart would have four colors since TV and Radio would be separated. Note: If you only pass {"Baseline": "intercept", "Online": ["Banners"]}, you will not see the TV and Radio channels in the chart. original_scale : bool, by default False If True, the contributions are plotted in the original scale of the target. Returns ------- plt.Figure Matplotlib figure with the plot. """ all_contributions_over_time = self.compute_mean_contributions_over_time( original_scale=original_scale ) if stack_groups is not None: grouped_buffer = [] for group, columns in stack_groups.items(): grouped = ( all_contributions_over_time.filter(columns) .sum(axis="columns") .rename(group) ) grouped_buffer.append(grouped) all_contributions_over_time = pd.concat(grouped_buffer, axis="columns") fig, ax = plt.subplots(**plt_kwargs) area_params = dict(stacked=True, ax=ax) if area_kwargs is not None: area_params.update(area_kwargs) all_contributions_over_time.plot.area(**area_params) ax.legend(title="groups", loc="center left", bbox_to_anchor=(1, 0.5)) return fig
def _get_channel_contributions_share_samples(self) -> DataArray: channel_contribution_original_scale_samples: DataArray = ( self.compute_channel_contribution_original_scale() ) numerator: DataArray = channel_contribution_original_scale_samples.sum(["date"]) denominator: DataArray = numerator.sum("channel") return numerator / denominator
[docs] def plot_channel_contribution_share_hdi( self, hdi_prob: float = 0.94, **plot_kwargs: Any ) -> plt.Figure: """Plot the share of channel contributions in a forest plot. Parameters ---------- hdi_prob : float, optional HDI value to be displayed, by default 0.94 **plot_kwargs Additional keyword arguments to pass to `az.plot_forest`. Returns ------- plt.Figure """ channel_contributions_share: DataArray = ( self._get_channel_contributions_share_samples() ) ax, *_ = az.plot_forest( data=channel_contributions_share, combined=True, hdi_prob=hdi_prob, **plot_kwargs, ) ax.xaxis.set_major_formatter(mtick.FuncFormatter(lambda y, _: f"{y: 0.0%}")) fig: plt.Figure = plt.gcf() fig.suptitle("channel Contribution Share", fontsize=16, y=1.05) return fig
[docs] def graphviz(self, **kwargs): """Get the graphviz representation of the model. Parameters ---------- **kwargs Keyword arguments for the `pm.model_to_graphviz` function Returns ------- graphviz.Digraph """ return pm.model_to_graphviz(self.model, **kwargs)
def _process_decomposition_components(self, data: pd.DataFrame) -> pd.DataFrame: """Process data to compute the sum of contributions by component and calculate their percentages. The output dataframe will have columns for "component", "contribution", and "percentage". Parameters ---------- data : pd.DataFrame Dataframe containing the contribution by component from the function "compute_mean_contributions_over_time". Returns ------- pd.DataFrame A dataframe with contributions summed up by component, sorted by contribution in ascending order. With an additional column showing the percentage contribution of each component. """ dataframe = data.copy() stack_dataframe = dataframe.stack().reset_index() stack_dataframe.columns = pd.Index(["date", "component", "contribution"]) stack_dataframe.set_index(["date", "component"], inplace=True) dataframe = stack_dataframe.groupby("component").sum() dataframe.sort_values(by="contribution", ascending=True, inplace=True) dataframe.reset_index(inplace=True) total_contribution = dataframe["contribution"].sum() dataframe["percentage"] = (dataframe["contribution"] / total_contribution) * 100 return dataframe
[docs] def plot_waterfall_components_decomposition( self, original_scale: bool = True, figsize: tuple[int, int] = (14, 7), **kwargs, ) -> plt.Figure: """Create a waterfall plot. The plot shows the decomposition of the target into its components. Parameters ---------- original_scale : bool, optional If True, the contributions are plotted in the original scale of the target. figsize : tuple[int, int], optional The size of the figure. The default is (14, 7). **kwargs Additional keyword arguments to pass to the matplotlib `subplots` function. Returns ------- fig : matplotlib.figure.Figure The matplotlib figure object. """ dataframe = self.compute_mean_contributions_over_time( original_scale=original_scale ) dataframe = self._process_decomposition_components(data=dataframe) total_contribution = dataframe["contribution"].sum() fig, ax = plt.subplots(figsize=figsize, layout="constrained", **kwargs) cumulative_contribution = 0 for index, row in dataframe.iterrows(): color = "C0" if row["contribution"] >= 0 else "C3" bar_start = ( cumulative_contribution + row["contribution"] if row["contribution"] < 0 else cumulative_contribution ) ax.barh( row["component"], row["contribution"], left=bar_start, color=color, alpha=0.5, ) if row["contribution"] > 0: cumulative_contribution += row["contribution"] label_pos = bar_start + (row["contribution"] / 2) if row["contribution"] < 0: label_pos = bar_start - (row["contribution"] / 2) ax.text( label_pos, index, f"{row['contribution']:,.0f}\n({row['percentage']:.1f}%)", ha="center", va="center", color="black", fontsize=10, ) ax.set_title("Response Decomposition Waterfall by Components") ax.set_xlabel("Cumulative Contribution") ax.set_ylabel("Components") xticks = np.linspace(0, total_contribution, num=11) xticklabels = [f"{(x/total_contribution)*100:.0f}%" for x in xticks] ax.set_xticks(xticks) ax.set_xticklabels(xticklabels) ax.spines["right"].set_visible(False) ax.spines["top"].set_visible(False) ax.spines["left"].set_visible(False) ax.set_yticks(np.arange(len(dataframe))) ax.set_yticklabels(dataframe["component"]) return fig
[docs] class BaseValidateMMM( MMMModelBuilder, ValidateTargetColumn, ValidateDateColumn, ValidateChannelColumns, ): """Base class with some validation of the inputs."""