-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.Rmd
More file actions
52 lines (30 loc) · 1.33 KB
/
README.Rmd
File metadata and controls
52 lines (30 loc) · 1.33 KB
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# macro_dashboard_data
<!-- badges: start -->

<!-- badges: end -->
# About this repo
This repository contains various Australian macroeconomic data, along with the scripts needed to update that data. The scripts are set to execute daily via GitHub Actions, which updates the data.
The data is used by the Grattan macro dashboard.
- [Dashboard repo](https://github.com/grattan/macrodashboard)
- [Live dashboard](https://mattcowgill.shinyapps.io/macrodashboard/)
# Updates to this repo
The table below provides information about when the data in this repository was last updated.
```{r, include=FALSE}
last_run <- readLines(here::here("last_refreshed.txt"))
last_run <- lubridate::with_tz(last_run, "Australia/Melbourne")
last_updated <- readr::read_csv(here::here("last_updated.csv"))
last_updated$date <- lubridate::with_tz(last_updated$date, "Australia/Melbourne")
last_updated <- last_updated[rev(order(last_updated$date)),]
```
Data update script last run at `r last_run` AEST.
Data last updated at: `r knitr::kable(last_updated)`