Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ st.plotly_chart(fig)
|
|
101 |
|
102 |
# Create the contour plot
|
103 |
fig, ax = plt.subplots()
|
104 |
-
contours = ax.contour(
|
105 |
ax.clabel(contours, inline=True, fontsize=8, fmt='%.3f') # Add labels to the contours
|
106 |
|
107 |
ax.set_xlabel('y1')
|
|
|
101 |
|
102 |
# Create the contour plot
|
103 |
fig, ax = plt.subplots()
|
104 |
+
contours = ax.contour(y1, y2, pdf_values, levels=20)
|
105 |
ax.clabel(contours, inline=True, fontsize=8, fmt='%.3f') # Add labels to the contours
|
106 |
|
107 |
ax.set_xlabel('y1')
|