Tyler Burns commited on
Commit
b7043f1
1 Parent(s): 0df1ea2

added st dataframe below the plot

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,4 +46,5 @@ fig = px.scatter(dat, x = 'umap1', y = 'umap2', hover_data = ['title', 'body'],
46
 
47
  st.plotly_chart(fig, use_container_width=True)
48
 
49
- # TODO add a table under the plot
 
 
46
 
47
  st.plotly_chart(fig, use_container_width=True)
48
 
49
+ # A table under the plot
50
+ st.dataframe(dat)