---
title: "Cookbook"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{Cookbook}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
chunk_output_type: console
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
message = FALSE,
warning = FALSE
)
```
This cookbook provides examples of the code used to produce various chart types using afcharts. There are also examples to demonstrate how to apply further customisation to afcharts charts.
If there is a chart type or task which you think would be useful to include here, please [submit a suggestion](https://github.com/best-practice-and-impact/afcharts/issues/new?&labels=documentation&title=Cookbook+suggestion).
**use_afcharts**
The examples in this cookbook use the afcharts theme and colour functions explicitly, however it may be easier to make use of the `use_afcharts()` function if your charts all require a similar style. More information on `use_afcharts` can be found on the [homepage](https://best-practice-and-impact.github.io/afcharts/#use-afcharts-as-default).
**Note on use of titles, subtitles and captions**
Titles, subtitles and captions have been embedded in the charts in this cookbook for demonstration purposes. However, for accessibility reasons, it is usually preferable to provide titles in the body of the page rather than embedded within the image of the plot.
The following packages are required to produce the example charts in this cookbook:
```{r load-packages}
library(afcharts)
library(ggplot2)
library(dplyr)
library(ggtext)
# Use gapminder data for cookbook charts
library(gapminder)
```
```{r chart-types, child = "cookbook/_chart-types.Rmd"}
```
```{r annotations, child = "cookbook/_annotations.Rmd"}
```
```{r customisations, child = "cookbook/_customisations.Rmd"}
```
```{r colour-palettes, child = "cookbook/_colour-palettes.Rmd"}
```
```{r acknowledgments, child = "cookbook/_acknowledgments.Rmd"}
```