playground / app.py
corvo7's picture
Update app.py
2ddbbb9 verified
raw
history blame contribute delete
211 Bytes
import streamlit as st
import pandas as pd
import numpy as np
st.write("hello welcome to deep learning")
chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
st.area_chart(chart_data)