-
Notifications
You must be signed in to change notification settings - Fork 0
/
stockapp.py
85 lines (60 loc) · 2.74 KB
/
stockapp.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
import pandas as pd # pip install pandas openpyxl
import plotly.express as px # pip install plotly-express
import streamlit as st # pip install streamlit
import plotly.graph_objects as go
def load_data():
"""Function for loading data"""
df = pd.read_csv("stock.csv", index_col="Date")
numeric_df = df.select_dtypes(['float','int'])
numeric_cols = numeric_df.columns
text_df = df.select_dtypes(['object'])
text_cols = text_df.columns
stock_column = df['company_name']
unique_stocks = stock_column.unique()
return df, numeric_cols, text_cols, unique_stocks
df, numeric_cols, text_cols, unique_stocks = load_data()
# Title of dashboard
st.title("Stock Dashboard")
# add checknob to sidebar
check_box = st.sidebar.checkbox(label="Display dataset")
if check_box:
# lets show the dataset
st.write(df)
# give sidebar a title
st.sidebar.title("Settings")
st.sidebar.subheader("Timeseries settings")
feature_selection = st.sidebar.multiselect(label="Features to plot",
options=numeric_cols)
stock_dropdown = st.sidebar.selectbox(label="Stock Ticker",
options=unique_stocks)
print(feature_selection)
df = df[df['company_name']==stock_dropdown]
df_features = df[feature_selection]
chart_select= st.sidebar.selectbox(
label='Select the chart type',
options=['Scatterplots','Lineplot','Histogram','Funnel'])
#global ploty_figure
if chart_select =='Scatterplots':
plotly_figure = px.scatter(data_frame=df_features,
x=df_features.index,y=feature_selection,
title=(str(stock_dropdown) + ' ' +'timeline')
)
st.plotly_chart(plotly_figure)
elif chart_select =='Lineplot':
plotly_figure = px.line(data_frame=df_features,
x=df_features.index,y=feature_selection,
title=(str(stock_dropdown) + ' ' +'timeline')
)
st.plotly_chart(plotly_figure)
elif chart_select =='Histogram':
plotly_figure = px.histogram(data_frame=df_features,
x=df_features.index,y=feature_selection,
title=(str(stock_dropdown) + ' ' +'timeline')
)
st.plotly_chart(plotly_figure)
elif chart_select =='Funnel':
plotly_figure = px.funnel(data_frame=df_features,
x=df_features.index,y=feature_selection,
title=(str(stock_dropdown) + ' ' +'timeline')
)
st.plotly_chart(plotly_figure)