Add text comments to Reports
How to add a widget with custom text.
Code example
What you can do

Using “Comment” Metric
Last updated
How to add a widget with custom text.

Last updated
model_description = """
# Model Description
This is a demand forecasting model.
## Intended use
* Weekly sales planning
* Weekly capacity planning
"""report = Report(metrics=[
Comment(model_description),
ColumnDistributionMetric('TOTAL_ORDERS')
])
report.run(current_data=raw_data, reference_data=None)
report