Spaces:
Configuration error
Configuration error
Commit
·
853eb78
1
Parent(s):
ba427ed
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
import numpy as np
|
| 4 |
+
import matplotlib.pyplot as plt
|
| 5 |
+
|
| 6 |
+
# Create some example data
|
| 7 |
+
df = pd.DataFrame({
|
| 8 |
+
'x': range(100),
|
| 9 |
+
'y': np.random.randn(100)
|
| 10 |
+
})
|
| 11 |
+
|
| 12 |
+
# Use Streamlit to display a line chart
|
| 13 |
+
st.line_chart(df)
|