Skip to content

Commit

Permalink
Added first draft of A3
Browse files Browse the repository at this point in the history
  • Loading branch information
robjhyndman committed Jan 31, 2024
1 parent ef21daa commit dcda6f0
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion assignments/A3.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,32 @@
title: Assignment 3 (20%)
---

> Use package within larger quarto targets workflow Uses broken function from A2
Your task is to produce a short report analysing some data using a quarto template with a targets workflow. You may use any data you choose provided it includes at least 1000 observations. Possible sources of data include:

* [Human Mortality Database](https://mortality.org)
* [Human Fertility Database](https://humanfertility.org)
* [UN Data](https://data.un.org)
* [IMF Data](https://data.imf.org)
* [ABS Census Data](https://www.abs.gov.au/census/find-census-data/datapacks?release=2021)
* [Australian Electoral Commission data](https://www.aec.gov.au/election/downloads.htm)
* [US General Social Survey](https://gss.norc.org/get-the-data/)
* [HILDA Survey](https://melbourneinstitute.unimelb.edu.au/hilda)
* [Johns Hopkins COVID data](https://github.com/CSSEGISandData/COVID-19)

The source data must be in as close to raw form as possible. e.g., csv or xlsx files obtained from the data custodians. You are not to use data that is already in an R package.

Your analysis should include the following elements:

* Reading the raw data into R.
* Cleaning and wrangling the data into a form suitable for analysis.
* At least two plots highlighting interesting features of the data.
* At least one statistical model fitted to the data (or a subset of the data). This could be a linear model, a GLM, a GAM, a GAMM, a time series model, or any other model you think is appropriate. There are no marks awarded for model complexity --- you should use a model that is appropriate for the data.
* A discussion of the results of the model and how they relate to the plots.

You must use the [targets](https://books.ropensci.org/targets/) package to manage the workflow, with the analysis described in a [quarto](https://quarto.org) report.


> Uses broken function from A2
```{r}
#| output: asis
Expand Down

0 comments on commit dcda6f0

Please sign in to comment.