Skip to content

Commit 7b62ce9

Browse files
committed
chore(5-min-viz): remove data table
the data table is not needed in the UI at this point
1 parent 11d87be commit 7b62ce9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pems_streamlit/src/pems_streamlit/apps/stations/app_stations.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ def main():
9090
filtered_df = df_station_data[
9191
(df_station_data["SAMPLE_TIMESTAMP"].dt.day.isin(days)) & (df_station_data["LANE"].isin(lane))
9292
]
93-
st.dataframe(df_station_data, use_container_width=True)
9493
filtered_df_sorted = filtered_df.sort_values(by="SAMPLE_TIMESTAMP")
9594
plot_5_min_traffic_data(filtered_df_sorted, quantity, lane)
9695

0 commit comments

Comments
 (0)