Skip to content

format code blocks #1621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 7, 2025
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ mmm = MMM(
Initiate fitting and get insightful plots and summaries. For example, we can plot the components contributions:

```python
X = data.drop("y",axis=1)
X = data.drop("y", axis=1)
y = data["y"]
mmm.fit(X,y)
mmm.plot_components_contributions();
mmm.fit(X, y)
mmm.plot_components_contributions()
```

![](docs/source/_static/mmm_plot_components_contributions.png)
Expand Down Expand Up @@ -209,7 +209,7 @@ existing_products = ["competitor", "own"]
# Create MVITS model
mvits = MVITS(
existing_sales=existing_products,
saturated_market=True # Set False for unsaturated markets
saturated_market=True, # Set False for unsaturated markets
)

# Fit model
Expand Down