Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhodge931 committed Nov 9, 2023
1 parent 492b9c6 commit 81d80f3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions vignettes/articles/2_functions_demo_dark-Rmd.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ economics |>
penguins2 |>
gg_bar(
x = species,
col = species,
col = sex,
width = 0.6,
position = "dodge")
```
Expand All @@ -70,8 +70,8 @@ penguins2 |>
gg_blank(
x = flipper_length_mm,
y = body_mass_g,
col = species,
facet = sex,
col = sex,
facet = species,
y_include = 0)
```

Expand All @@ -82,8 +82,8 @@ penguins2 |>
gg_boxplot(
x = sex,
y = body_mass_g,
col = species,
facet = sex,
col = sex,
facet = species,
x_labels = snakecase::to_sentence_case)
```

Expand All @@ -96,7 +96,7 @@ penguins2 |>
gg_col(
x = flipper_length_mm,
y = species,
col = species,
col = sex,
width = 0.66,
position = "dodge")
```
Expand Down Expand Up @@ -150,8 +150,8 @@ data.frame(
penguins2 |>
gg_density(
x = flipper_length_mm,
col = species,
facet = sex)
col = sex,
facet = species)
```

### gg_density_2d
Expand Down Expand Up @@ -201,8 +201,8 @@ data.frame(
penguins2 |>
gg_freqpoly(
x = flipper_length_mm,
col = species,
facet = sex)
col = sex,
facet = species)
```

### gg_hex
Expand All @@ -223,8 +223,8 @@ diamonds |>
penguins2 |>
gg_histogram(
x = flipper_length_mm,
col = species,
facet = sex,
col = sex,
facet = species,
bins = 50)
```

Expand All @@ -234,8 +234,8 @@ penguins2 |>
penguins2 |>
gg_freqpoly(
x = flipper_length_mm,
col = species,
facet = sex)
col = sex,
facet = species)
```

### gg_jitter
Expand Down Expand Up @@ -380,7 +380,7 @@ datapoly |>
penguins2 |>
gg_qq(
sample = body_mass_g,
facet = sex,
facet = species,
coord = ggplot2::coord_cartesian(clip = "on"))
```

Expand Down Expand Up @@ -461,7 +461,7 @@ penguins2 |>
gg_smooth(
x = flipper_length_mm,
y = body_mass_g,
facet = sex)
facet = species)
```

### gg_step
Expand Down Expand Up @@ -515,6 +515,6 @@ penguins2 |>
gg_violin(
x = sex,
y = body_mass_g,
col = species,
facet = sex)
col = sex,
facet = species)
```

0 comments on commit 81d80f3

Please sign in to comment.