Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pymc_marketing/mmm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from pymc_marketing.mmm.components.saturation import (
HillSaturation,
HillSaturationSigmoid,
HillShapeSaturation,
InverseScaledLogisticSaturation,
LogisticSaturation,
MichaelisMentenSaturation,
Expand Down Expand Up @@ -77,6 +78,7 @@
"HSGPPeriodic",
"HillSaturation",
"HillSaturationSigmoid",
"HillShapeSaturation",
"InverseScaledLogisticSaturation",
"LinearTrend",
"LogisticSaturation",
Expand Down
44 changes: 44 additions & 0 deletions pymc_marketing/mmm/additive_effect/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright 2022 - 2025 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.
"""
Additive effects submodule.

This submodule provides classes for modeling additive effects within the PyMC Marketing Mix Modeling (MMM) framework.

It exposes the following components:
- Model: The main class for specifying additive effect models.
- MuEffect: A class representing the mean effect in additive models.

Typical usage involves importing these classes to construct and analyze additive effect models in marketing analytics.
"""

from pymc_marketing.mmm.additive_effect.additive_effect import (
EventAdditiveEffect,
FourierEffect,
LinearTrendEffect,
Model,
MuEffect,
)
from pymc_marketing.mmm.additive_effect.frequency_reach_effect import (
FrequencyReachAdditiveEffect,
)

__all__ = [
"EventAdditiveEffect",
"FourierEffect",
"FrequencyReachAdditiveEffect",
"LinearTrendEffect",
"Model",
"MuEffect",
]
Loading