Skip to content

Commit

Permalink
season_report template: centered left-aligned plots
Browse files Browse the repository at this point in the history
  • Loading branch information
lawalter committed Feb 1, 2022
1 parent fe2b6d3 commit c817228
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions inst/templates/season_report.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ findDuplicates(cleaned_data)

### After fixDuplicates (all 49 states)

```{r a_fd, echo = FALSE, warning = FALSE}
```{r a_fd, echo = FALSE, warning = FALSE, fig.align = "center"}
rm(cleaned_data)
findDuplicates(unshifted_data)
Expand Down Expand Up @@ -405,27 +405,27 @@ errorPlot_states(corrected_data)

### Before correction

```{r erpdl, echo = FALSE}
```{r erpdl, echo = FALSE, fig.align = "center"}
errorPlot_dl(proofed_data)
```

### After correction

```{r erpdl_c, echo = FALSE}
```{r erpdl_c, echo = FALSE, fig.align = "center"}
errorPlot_dl(corrected_data)
rm(corrected_data)
```

## Out-of-state hunters

```{r canadians, echo = FALSE}
```{r canadians, echo = FALSE, fig.align = "center"}
outOfStateHunters(proofed_data)
```

## Youth hunters

```{r yh, echo = FALSE}
```{r yh, echo = FALSE, fig.align = "center"}
youthHunters(proofed_data, year = params$year)
```

Expand Down

0 comments on commit c817228

Please sign in to comment.