File size: 252 Bytes
853eb78
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

# Create some example data
df = pd.DataFrame({
   'x': range(100),
   'y': np.random.randn(100)
})

# Use Streamlit to display a line chart
st.line_chart(df)