Map / app.py
MadhuV28's picture
Update app.py
57f85d0
raw
history blame
182 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)