cahodk commited on
Commit
4c2b8fa
·
1 Parent(s): e8dfd35

Basic chart

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+
5
+ chart_data = pd.DataFrame(
6
+ np.random.randn(20, 3),
7
+ columns=["a", "b", "c"])
8
+
9
+ st.bar_chart(chart_data)