forked from wowthemesnet/jekyll-theme-memoirs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App1.py
31 lines (28 loc) · 868 Bytes
/
App1.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
import streamlit as st
import datetime
import numpy as np
import pandas as pd
###########################
###########################
st.title('L')
st.write("Here's our first attempt at using data to create a table:")
st.write(pd.DataFrame({
'first column': [1, 2, 3, 4],
'second column': [10, 20, 30, 40]
}))
if st.checkbox('Show dataframe'):
chart_data = pd.DataFrame(
np.random.randn(20, 3),
columns=['a', 'b', 'c'])
st.line_chart(chart_data)
# Data
loaigd = pd.DataFrame({
'first column': ['Lịch sử giá và GDNDTNN','Lịch sự kiện'],
'second column': ['lichsugia','lichsukien']
})
#Slide bar
title = st.sidebar.title('Lịch sử giao dịch')
option = st.sidebar.radio(
'1. Chọn loại giao dịch',
loaigd['first column'])
date = st.sidebar.date_input('2. Ngày giao dịch', datetime.datetime.today())