remove repeated words in alt (#1059)

This commit is contained in:
JooYoung Seo 2022-08-11 17:34:48 -05:00 committed by GitHub
parent 5ad1eca391
commit 47e9f54a39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -803,7 +803,7 @@ The chart shows that more diamonds are available with high quality cuts than wit
```{r}
#| fig-alt: >
#| Bar chart of number of each each cut of diamond. There are roughly 1500
#| Bar chart of number of each cut of diamond. There are roughly 1500
#| Fair, 5000 Good, 12000 Very Good, 14000 Premium, and 22000 Ideal cut
#| diamonds.
@ -849,7 +849,7 @@ For example, you can recreate the previous plot using `stat_count()` instead of
```{r}
#| fig-alt: >
#| Bar chart of number of each each cut of diamond. There are roughly 1500
#| Bar chart of number of each cut of diamond. There are roughly 1500
#| Fair, 5000 Good, 12000 Very Good, 14000 Premium, and 22000 Ideal cut
#| diamonds.
@ -869,7 +869,7 @@ However, there are three reasons why you might need to use a stat explicitly:
```{r}
#| warning: false
#| fig-alt: >
#| Bar chart of number of each each cut of diamond. There are roughly 1500
#| Bar chart of number of each cut of diamond. There are roughly 1500
#| Fair, 5000 Good, 12000 Very Good, 14000 Premium, and 22000 Ideal cut
#| diamonds.
@ -894,7 +894,7 @@ However, there are three reasons why you might need to use a stat explicitly:
```{r}
#| fig-alt: >
#| Bar chart of proportion of each each cut of diamond. Roughly, Fair
#| Bar chart of proportion of each cut of diamond. Roughly, Fair
#| diamonds make up 0.03, Good 0.09, Very Good 0.22, Premium 26, and
#| Ideal 0.40.