-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
157 lines (127 loc) · 4.55 KB
/
app.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
# https://shiny.posit.co/py/docs/debug.html
# https://shiny.posit.co/py/docs/user-interfaces.html#all-together-now
# https://github.com/posit-dev/py-shiny-templates/blob/main/dashboard-tips/app-core.py
# https://www.appsilon.com/post/great-tables
import faicons as fa
import great_tables as gt
from great_tables import html, style, google_font, loc
# Load data and compute static values
from shared import app_dir, df
from shiny import App, reactive, render, ui
years = df['estimate_year'].unique().tolist()
icons = {
"households": fa.icon_svg("house-user"),
"housing_unit": fa.icon_svg("house"),
"people": fa.icon_svg("people-group")
}
# ui ----
ui.tags.link(
rel="stylesheet",
href="https://fonts.googleapis.com/css?family=Poppins"
),
app_ui = ui.page_sidebar(
ui.sidebar(
ui.input_select("year", "Select Year", years),
ui.input_action_button("go", "Enter"),
open="desktop",
),
ui.layout_columns(
ui.value_box(
title = "Total Population",
value = ui.output_ui("tot_pop"),
showcase = icons["people"]
),
ui.value_box(
title = "Housing Units",
value = ui.output_ui("hu"),
showcase = icons["housing_unit"]
),
ui.value_box(
title = "Households",
value = ui.output_ui("hh"),
showcase = icons["households"]
)
),
ui.layout_columns(
ui.card(
ui.card_header("Estimates at a Glance"),
ui.output_ui("table"),
full_screen=True
)
),
ui.include_css(app_dir / "styles.css"),
title="OFM Estimates for the Central Puget Sound",
fillable=True,
)
# server ----
def server(input, output, session):
@reactive.calc
@reactive.event(input.go)
def select_ofm_data():
# filter data for value boxes
rec = df[df['estimate_year'] == int(input.year())].reset_index()
# breakpoint()
return rec
@render.ui
def tot_pop():
# extract total population value for value box
val = select_ofm_data().loc[0, 'HHPOP'] + select_ofm_data().loc[0, 'GQPOP']
val = "{:,}".format(round(val))
return val
@render.ui
def hh():
# extract households value for value box
val = select_ofm_data().loc[0, 'OHU']
val = "{:,}".format(round(val))
return val
@render.ui
def hu():
# extract housing units value for value box
val = select_ofm_data().loc[0, 'HU']
val = "{:,}".format(round(val))
return val
@reactive.calc
def prep_table():
# munge table before render
df_clean = df
df_clean["group"] = df_clean["publication_dim_id"].case_when([
(df_clean["publication_dim_id"] == 11, "Intercensal"),
(df_clean["publication_dim_id"] == 10, "Post-censal")])
return df_clean
@reactive.event(input.go)
def select_year_row():
# identify index of row based on selected year
df = prep_table()
row = df[df["estimate_year"] == int(input.year())]
index = row.index.item()
return index
@reactive.calc
def gt_table():
# prep GT table
table = (
gt.GT(data = prep_table())
.cols_label(
estimate_year = "Estimate Year",
HU = 'Housing Unit',
OHU = "Households",
GQPOP = html("Group Quarters<br>Population"),
HHPOP = html("Household<br>Population")
)
.fmt_number(columns=["HU", "OHU", "GQPOP", "HHPOP"], decimals=0)
.cols_align(align="left", columns=["publication_dim_id", "estimate_year"])
.cols_align(align="center", columns=[x for x in df.columns if x not in ["group", "publication_dim_id", "estimate_year"]])
.tab_options(table_width="75%")
.tab_stub(rowname_col = "estimate_year", groupname_col = "group")
.cols_hide(columns="publication_dim_id")
.opt_table_font(font=[google_font(name="Poppins"), "Cochin", "Serif"])
)
return table
@render.ui
def table():
# render table. Styling based on whether 'Enter' has been clicked
if(input.go() >= 1):
return gt_table().tab_style(style = style.fill(color="#E3C9E3"),
locations = loc.body(columns = ["HU", "OHU", "GQPOP", "HHPOP"], rows=[select_year_row()]))
else:
return gt_table()
app = App(app_ui, server)