Skip to content

Commit 2503830

Browse files
committed
update dashboard 08/25
1 parent 6ab7bdd commit 2503830

File tree

2 files changed

+71
-71
lines changed

2 files changed

+71
-71
lines changed

aps-dashboard.qmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,18 +138,18 @@ ggplotly(chart_1, tooltip = c("x", "fill"))
138138
subs_over_time <- as.data.frame(dbGetQuery(
139139
con,
140140
"SELECT
141-
t.form_id AS sub,
142-
t.ar_institution AS institution,
143-
t.ar_aps_report_date AS date,
141+
form_id AS sub,
142+
ar_institution AS institution,
143+
ar_aps_report_date AS date,
144144
COUNT(*) OVER (
145145
ORDER BY
146-
t.ar_aps_report_date
146+
ar_aps_report_date
147147
ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
148148
) AS cum_submissions
149149
FROM
150-
'APS-BL' AS t
150+
'APS-BL'
151151
WHERE
152-
t.ar_aps_report_date IS NOT NULL
152+
ar_aps_report_date IS NOT NULL
153153
ORDER BY
154154
date
155155
"

0 commit comments

Comments
 (0)