Skip to content

Commit

Permalink
Update dashboard_CLOUD.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Isdinval authored Jun 6, 2024
1 parent f5c3d92 commit a3f438b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard_CLOUD.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,9 @@ def main():
feature2 = st.selectbox('Select Feature 2:', all_features.columns, index=all_features.columns.get_loc('AMT_ANNUITY'))

feature1_description = feature_descriptions[feature_descriptions["Row"] == feature1]["Description"].iloc[0] # Find description for the selected feature
st.write(f"Description de la feature : **{feature1_description}**")
st.write(f"Description de la feature 1 : **{feature1_description}**")
feature2_description = feature_descriptions[feature_descriptions["Row"] == feature2]["Description"].iloc[0] # Find description for the selected feature
st.write(f"Description de la feature : **{feature2_description}**")
st.write(f"Description de la feature 2 : **{feature2_description}**")



Expand Down

0 comments on commit a3f438b

Please sign in to comment.