Spaces:
Sleeping
Sleeping
Commit
·
9e4341f
1
Parent(s):
6ea325b
Update app.py
Browse files
app.py
CHANGED
@@ -65,6 +65,7 @@ def visualize_input_data(choice):
|
|
65 |
elif choice == "BIC criterion":
|
66 |
plt.plot(bic_criterion, color="tab:orange", marker="o", label="BIC criterion")
|
67 |
else:
|
|
|
68 |
plt.plot(aic_criterion, color="tab:blue", marker="*", label="AIC criterion")
|
69 |
plt.plot(bic_criterion, color="tab:orange", marker="o", label="BIC criterion")
|
70 |
|
|
|
65 |
elif choice == "BIC criterion":
|
66 |
plt.plot(bic_criterion, color="tab:orange", marker="o", label="BIC criterion")
|
67 |
else:
|
68 |
+
plt.clf ()
|
69 |
plt.plot(aic_criterion, color="tab:blue", marker="*", label="AIC criterion")
|
70 |
plt.plot(bic_criterion, color="tab:orange", marker="o", label="BIC criterion")
|
71 |
|