williambr commited on
Commit
afc9357
·
1 Parent(s): 50c74c4

Create new file

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+
5
+ df = pd.DataFrame(
6
+ np.random.randn(1000, 2) / [50, 50] + [37.76, -122.4],
7
+ columns=['lat', 'lon'])
8
+
9
+ st.map(df)
10
+
11
+