Update app.py
Browse files
app.py
CHANGED
@@ -226,7 +226,7 @@ def delete_data(df):
|
|
226 |
st.title("Anatomy Head to Toe CRUD Operations")
|
227 |
|
228 |
# Display the table if checkbox is checked
|
229 |
-
if st.checkbox('Show Anatomy Table'):
|
230 |
df = load_data()
|
231 |
st.markdown("## Anatomy Head to Toe Table with Body Organs Costly Conditions, Spending, CPT Codes and Frequency")
|
232 |
st.dataframe(df)
|
|
|
226 |
st.title("Anatomy Head to Toe CRUD Operations")
|
227 |
|
228 |
# Display the table if checkbox is checked
|
229 |
+
if st.checkbox('Show Anatomy Table as Dataframe'):
|
230 |
df = load_data()
|
231 |
st.markdown("## Anatomy Head to Toe Table with Body Organs Costly Conditions, Spending, CPT Codes and Frequency")
|
232 |
st.dataframe(df)
|