Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ldhldh
/
Blockchain_chart
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ldhldh
commited on
Nov 28, 2023
Commit
2b49274
·
1 Parent(s):
9e83447
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import streamlit as st
2
+
import pandas as pd
3
+
import numpy as np
4
+
5
+
chart_data = pd.DataFrame(np.random.randn(20, 3), columns=["a", "b", "c"])
6
+
7
+
st.area_chart(chart_data)