Abs6187 commited on
Commit
3889471
·
verified ·
1 Parent(s): 3875487

Create src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +38 -0
src/streamlit_app.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import altair as alt
2
+ import numpy as np
3
+ import pandas as pd
4
+ import streamlit as st
5
+
6
+ """
7
+ # Welcome to Streamlit!
8
+ Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
9
+ If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
10
+ forums](https://discuss.streamlit.io).
11
+ In the meantime, below is an example of what you can do with just a few lines of code:
12
+ """
13
+
14
+ num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
15
+ num_turns = st.slider("Number of turns in spiral", 1, 300, 31)
16
+
17
+ indices = np.linspace(0, 1, num_points)
18
+ theta = 2 * np.pi * num_turns * indices
19
+ radius = indices
20
+
21
+ x = radius * np.cos(theta)
22
+ y = radius * np.sin(theta)
23
+
24
+ df = pd.DataFrame({
25
+ "x": x,
26
+ "y": y,
27
+ "idx": indices,
28
+ "rand": np.random.randn(num_points),
29
+ })
30
+
31
+ st.altair_chart(alt.Chart(df, height=700, width=700)
32
+ .mark_point(filled=True)
33
+ .encode(
34
+ x=alt.X("x", axis=None),
35
+ y=alt.Y("y", axis=None),
36
+ color=alt.Color("idx", legend=None, scale=alt.Scale()),
37
+ size=alt.Size("rand", legend=None, scale=alt.Scale(range=[1, 150])),
38
+ ))