SANIDHYAG commited on
Commit
9d4a575
·
verified ·
1 Parent(s): 3abce8b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -174,7 +174,7 @@ elif page == "Road Surface Analysis":
174
 
175
  elif page == "Injury Correlation":
176
  st.header("Correlation Among Injury Stats")
177
- st.markdown("Explore numeric relationships between injury types and year.")
178
 
179
  num_df = df[["MinorInjuries", "ModerateInjuries", "SevereInjuries", "FatalInjuries", "TotalInjuries", "year"]]
180
  corr = num_df.corr().round(2)
 
174
 
175
  elif page == "Injury Correlation":
176
  st.header("Correlation Among Injury Stats")
177
+ st.markdown("Numeric relationships between injury types and year.")
178
 
179
  num_df = df[["MinorInjuries", "ModerateInjuries", "SevereInjuries", "FatalInjuries", "TotalInjuries", "year"]]
180
  corr = num_df.corr().round(2)