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,449 changes: 2,449 additions & 0 deletions docs/source/notebooks/mmm/mmm_report.ipynb

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions pymc_marketing/mmm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
preprocessing_method_X,
preprocessing_method_y,
)
from pymc_marketing.mmm.report import MMMReport
from pymc_marketing.mmm.scaling import (
DataDerivedScaling,
FixedScaling,
Expand Down Expand Up @@ -98,6 +99,8 @@
"LinearTrend",
"LogisticSaturation",
"MMMBuilder",
"MMMModelBuilder",
"MMMReport",
"MediaConfig",
"MediaConfigList",
"MediaTransformation",
Expand Down
35 changes: 35 additions & 0 deletions pymc_marketing/mmm/report/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2022 - 2026 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.
"""MMM report generation utilities.

This package provides :class:`MMMReport`, a high-level interface for
generating standardized reports from a fitted Media Mix Model. Reports
can be exported to HTML, PDF, or Excel.
"""

from pymc_marketing.mmm.report._contracts import (
ReportConfig,
ReportData,
ReportMetadata,
ReportSection,
)
from pymc_marketing.mmm.report._report import MMMReport

__all__ = [
"MMMReport",
"ReportConfig",
"ReportData",
"ReportMetadata",
"ReportSection",
]
Loading
Loading