Spaces:
Sleeping
Sleeping
File size: 378 Bytes
973d3ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
import pandas as pd
import numpy as np
# Title of the dashboard
st.title('Simple Data Dashboard')
# Create a sample dataframe
df = pd.DataFrame({
'Column A': np.random.randn(100),
'Column B': np.random.randn(100),
'Column C': np.random.randn(100)
})
# Display the dataframe
st.write("Here's a sample dataframe:", df)
# Add a line chart
st.line_chart(df)
|