Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from mpl_toolkits.mplot3d import Axes3D
|
|
6 |
|
7 |
# Sidebar
|
8 |
st.sidebar.header("Select Visualization")
|
9 |
-
plot_type = st.sidebar.selectbox("Choose a plot type", ("Heatmap", "3D Heatmap", "Contour", "Quiver", "Contourf", "Streamplot", "Hexbin", "Eventplot", "Tricontour", "Triplot"
|
10 |
|
11 |
# Load Data
|
12 |
# data = pd.read_csv("healthcare_treatments.csv")
|
@@ -133,6 +133,4 @@ elif plot_type == "Eventplot":
|
|
133 |
elif plot_type == "Tricontour":
|
134 |
tricontour()
|
135 |
elif plot_type == "Triplot":
|
136 |
-
triplot()
|
137 |
-
elif plot_type == "3D Voxel":
|
138 |
-
voxel()
|
|
|
6 |
|
7 |
# Sidebar
|
8 |
st.sidebar.header("Select Visualization")
|
9 |
+
plot_type = st.sidebar.selectbox("Choose a plot type", ("Heatmap", "3D Heatmap", "Contour", "Quiver", "Contourf", "Streamplot", "Hexbin", "Eventplot", "Tricontour", "Triplot"))
|
10 |
|
11 |
# Load Data
|
12 |
# data = pd.read_csv("healthcare_treatments.csv")
|
|
|
133 |
elif plot_type == "Tricontour":
|
134 |
tricontour()
|
135 |
elif plot_type == "Triplot":
|
136 |
+
triplot()
|
|
|
|