diff --git a/missing-values.qmd b/missing-values.qmd index 01e3f06..1f900a0 100644 --- a/missing-values.qmd +++ b/missing-values.qmd @@ -228,11 +228,10 @@ You can force them to display by supplying `drop = FALSE` to the appropriate dis ```{r} #| layout-ncol: 2 #| fig-width: 3 -#| fig-alt: | -#| A bar chart with a single value on the x-axis, "no". -#| -#| The same bar chart as the last plot, but now with two values on -#| the x-axis, "yes" and "no". There is no bar for the "yes" category. +#| fig-alt: +#| - A bar chart with a single value on the x-axis, "no". +#| - The same bar chart as the last plot, but now with two values on +#| the x-axis, "yes" and "no". There is no bar for the "yes" category. ggplot(health, aes(x = smoker)) + geom_bar() + scale_x_discrete()