Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
williambr
/
StreamlitMapPractice
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
afc9357
StreamlitMapPractice
/
app.py
williambr
Create new file
afc9357
over 2 years ago
raw
Copy download link
history
blame
185 Bytes
import
streamlit
as
st
import
pandas
as
pd
import
numpy
as
np
df = pd.DataFrame(
np.random.randn(
1000
,
2
) / [
50
,
50
] + [
37.76
, -
122.4
],
columns=[
'lat'
,
'lon'
])
st.
map
(df)