File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,10 +106,10 @@ mmm = MMM(
106106Initiate fitting and get insightful plots and summaries. For example, we can plot the components contributions:
107107
108108``` python
109- X = data.drop(" y" ,axis = 1 )
109+ X = data.drop(" y" , axis = 1 )
110110y = data[" y" ]
111- mmm.fit(X,y)
112- mmm.plot_components_contributions();
111+ mmm.fit(X, y)
112+ mmm.plot_components_contributions()
113113```
114114
115115![ ] ( docs/source/_static/mmm_plot_components_contributions.png )
@@ -209,7 +209,7 @@ existing_products = ["competitor", "own"]
209209# Create MVITS model
210210mvits = MVITS(
211211 existing_sales = existing_products,
212- saturated_market = True # Set False for unsaturated markets
212+ saturated_market = True , # Set False for unsaturated markets
213213)
214214
215215# Fit model
You can’t perform that action at this time.
0 commit comments