Skip to content

Commit

Permalink
Fixed spacing issues in week 2 and 3 slides
Browse files Browse the repository at this point in the history
  • Loading branch information
robjhyndman committed May 21, 2024
1 parent 4a495f7 commit 2b0f90c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 2 additions & 5 deletions week2/slides.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ to produce sensible forecasts. They want me to fix it.
\placefig{10.2}{1.4}{width=5.8cm}{tableware2}

## CASE STUDY 1: Paperware company
\vspace*{0.2cm}

### Methods currently used

Expand Down Expand Up @@ -151,10 +150,8 @@ Not the real data! Or is it?
### Additional information

* They can provide a large amount of data on previous routes.
* Traffic is affected by school holidays, special events such as
the Grand Prix, advertising campaigns, competition behaviour, etc.
* They have a highly capable team of people who are able to do
most of the computing.
* Traffic is affected by school holidays, special events such as the Grand Prix, advertising campaigns, competition behaviour, etc.
* They have a highly capable team of people who are able to do most of the computing.

## Your turn

Expand Down
4 changes: 4 additions & 0 deletions week3/slides.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ employed |>
## The ABS stuff-up

```{r abs4}
#| fig-height: 2.8
employed |>
filter(Year >= 2005) |>
autoplot(Employed) +
Expand All @@ -123,6 +124,7 @@ employed |>
## The ABS stuff-up

```{r abs5}
#| fig-height: 2.8
employed |>
filter(Year >= 2005) |>
gg_season(Employed, labels = "right") +
Expand All @@ -145,6 +147,7 @@ employed |>
## The ABS stuff-up

```{r abs7}
#| fig-height: 2.8
dcmp <- employed |>
filter(Year >= 2005) |>
model(stl = STL(Employed ~ season(window = 11), robust = TRUE))
Expand All @@ -154,6 +157,7 @@ components(dcmp) |> autoplot()
## The ABS stuff-up

```{r abs8}
#| fig-height: 2.8
components(dcmp) |>
filter(year(Time) == 2013) |>
gg_season(season_year) +
Expand Down

0 comments on commit 2b0f90c

Please sign in to comment.