-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.py
121 lines (96 loc) · 2.37 KB
/
tutorial.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import streamlit as st
import numpy as np
import pandas as pd
from PIL import Image
import time
st.title("Streamlit テスト")
# # st.write("プログレスバーの表示")
# """
# ## プログレスバーの表示
# """
# "Start!!"
# latest_iteration = st.empty()
# bar = st.progress(0)
# for i in range(100):
# latest_iteration.text(f"{i+1} %")
# bar.progress(i + 1)
# time.sleep(0.01)
# if i+1 == 100:
# done = False
# "Done!!!"
# st.write("Mapping")
"""
## Mapping
--------
"""
df = pd.DataFrame(
np.random.rand(100, 2)/[50, 50] + [35.69, 139.70],
columns=["lat", "lon"]
)
# mapping
if st.checkbox("Show Maps"):
st.map(df)
# DataFrameを表示
# st.dataframe(df.style.highlight_max(axis=0))
# 折れ線グラフを表示
# st.line_chart(df)
# 折れ線(領域を囲む)
# st.area_chart(df)
# 棒グラフ
# st.bar_chart(df)
#st.write("Display Image")
"""
## Display Image
--------
"""
if st.checkbox("Show Image"):
img = Image.open("logo.png")
st.image(img, caption="Streamlit Logo",
use_column_width=True)
#st.write("Display Video")
"""
## Display Video
--------
"""
# Video
if st.checkbox("Show Video"):
st.video("https://youtu.be/B2iAodr0fOo")
# """
# ## Markdown記法も使える
# ----
# ```python
# import streamlit as st
# import numpy as np
# import pandas as pd
# ```
# """
# st.latex(r'''
# a + ar + a r^2 + a r^3 + \cdots + a r^{n-1} =
# \sum_{k=0}^{n-1} ar^k =
# a \left(\frac{1-r^{n}}{1-r}\right)
# ''')
"""
## Interactive Widgets
--------
"""
st.write("Interactive Widgets")
left_column, right_column = st.columns(2)
button = left_column.button("右カラムに文字を表示")
if button:
right_column.write("ここは右カラム")
expander = st.expander("問い合わせ")
expander.text_input("問い合わせ1")
# option = st.selectbox(
# "好きな数字を教えて下さい",
# list(range(1, 11))
# )
# "あなたの好きな数字は、", option, "です。"
# text = st.sidebar.text_input("あなたの趣味を教えて下さい",)
# condition = st.sideber.slider("あなたの今の調子は?", 0, 100, 50)
# "あなたの趣味:", text
# if condition < 30:
# "コンディションはあまり良くないみたいですね。"
# elif condition < 80:
# "コンディションはまあまあですね。"
# else:
# "コンディションはバッチリですね!"