We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d0448d commit dc08f46Copy full SHA for dc08f46
pages/calculate_data.py
@@ -104,9 +104,9 @@
104
105
total_sage_flight_costs = (df['Flights'].sum()).round(2)
106
st.write('Total flight costs: ', total_sage_flight_costs)
107
- # st.caption('To calculate mileage from these flights, the necessary rows are below.')
108
- # flights_df = df.loc[df['Flights'] > 0]
109
- #st.dataframe(flights_df)
+ st.caption('To calculate mileage from these flights, the necessary rows are below.')
+ flights_df = df.loc[df['Flights'] > 0]
+ st.dataframe(flights_df)
110
111
total_sage_hotel_costs = (df['Hotels'].sum()).round(2)
112
st.write('Total hotel costs: ', total_sage_hotel_costs)
0 commit comments