Spaces:
Sleeping
Sleeping
File size: 267 Bytes
71b406a b10fdfd cb8b17a 71b406a bd786db 90e728c b10fdfd bd786db b10fdfd e3e7f11 b10fdfd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import streamlit as st
import pandas as pd
import numpy as np
#data = np.random.randint(1, 100, size=50)
#df = pd.DataFrame(data, columns=['random_numbers'])
df = pd.read_csv("data/my_data1.csv")
st.write("""
# My first app
Hello *world!*
""")
st.line_chart(df)
|