-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsql_functions.py
217 lines (160 loc) · 8.45 KB
/
sql_functions.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#SQL functions page
#load libraries
import streamlit as st
import pandas_gbq
from google.cloud import bigquery
from google.oauth2 import service_account
#read credentails for BigQuery access
credentials = service_account.Credentials.from_service_account_info(
st.secrets["gcp_service_account"]
)
client = bigquery.Client(credentials=credentials)
project_id = 'web-app-341703'
def app():
st.subheader('SQL - Functions')
# The following lines create a 2 column layout for a query (incl. what is does, the T-SQL syntax used and display of the query) and a refresh button
#------Query1------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query1', clear_on_submit = True):
st.write("This query selects the maximum predicted readmission rate for all providers. [MAX]")
st.code("SELECT ROUND(MAX(predicted_readmission_rate), 1) AS Max_Readmission_Rate\nFROM hosp_info.readmission_reduction")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/MAX.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh1', label='Refresh screen')
#------Query2------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query2', clear_on_submit = True):
st.write("This query counts the nubmer of hospitals in California. [COUNT]")
st.code("SELECT hospital_name, COUNT(*) AS Number_of_Hospitals_in_Calif\nFROM hosp_info.hospital_general_information\nWHERE state = 'CA'\nGROUP BY hospital_name")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/COUNT.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh2', label='Refresh screen')
#------Query3------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query3', clear_on_submit = True):
st.write("This query returns the length of characters in the hospital name. [LENGTH]")
st.code("SELECT hospital_name, LENGTH(hospital_name) AS Number_of_Characters\nFROM hosp_info.hospital_general_information\nLIMIT 10")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/LENGTH.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='<unique name>', label='Refresh screen')
#------Query4------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query4', clear_on_submit = True):
st.write("Returns the minimum life expectancy in the state of Alabama. [MIN]")
st.code("SELECT ROUND(MIN(avg_life_expect), 1) AS Min_Avg_Life_Expectancy\nFROM hosp_info.measures_of_birth_and_death\nWHERE state_name = 'Alabama'")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/MIN.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh4', label='Refresh screen')
#------Query5------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query5', clear_on_submit = True):
st.write("Returns sum of discharges from all hospitals [SUM]")
st.code("SELECT SUM(number_of_discharges) AS Sum_of_Deaths_all_Hospitals \nFROM hosp_info.readmission_reduction")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/SUM.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh5', label='Refresh screen')
#------Query6------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query6', clear_on_submit = True):
st.write("This query rounds the infant mortality rate for the the state of Alabama. [ROUND]")
st.code("SELECT ROUND(AVG(infant_mortality), 1) AS Infant_Mortality \nFROM hosp_info.measures_of_birth_and_death\nWHERE state_name = 'Alabama'")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/ROUND.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh6', label='Refresh screen')
#------Query7------
with st.container():
col1, col2 = st.columns([3,1])
with col1:
with st.form(key='query7', clear_on_submit = True):
st.write("Returns the number of providers in each city and state, then groups by city and state. [GROUP BY] ")
st.code("SELECT COUNT (DISTINCT(provider_name) AS Number_of_Providers, city, state\nFROM hosp_info.nursing_home_provider_info\nGROUP BY city, state\nLIMIT 25")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/GROUPBY.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh7', label='Refresh screen')
#------Query8------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query8', clear_on_submit = True):
st.write("Returns the average number of readmissions and rounds it. [AVG]")
st.code("SELECT ROUND(AVG(number_of_readmissions), 2) as Avg_Number_of_Readmissions\nFROM hosp_info.readmission_reduction")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions/AVG.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh8', label='Refresh screen')
#------Query9------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query9', clear_on_submit = True):
st.write("Returns all hospitals by state name with FIPS code over 10 [HAVING]")
st.code("SELECT COUNT(infant_mortality), state_name\nFROM hosp_info.measures_of_birth_and_death\nGROUP BY state_name\nHAVING COUNT(infant_mortality) > 5\nORDER BY state_name;")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/functions//HAVING.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
#st.write(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh9', label='Refresh screen')