Remove extraneous comma, closes #1413

This commit is contained in:
mine-cetinkaya-rundel 2023-04-09 23:00:40 -04:00
parent a0a0c00655
commit b9f4ad61c3
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ ggplot(mpg, aes(x = displ, y = hwy, color = drv)) +
geom_label_repel(
data = label_info,
aes(x = displ, y = hwy, label = drive_type),
fontface = "bold", size = 5, nudge_y = 2,
fontface = "bold", size = 5, nudge_y = 2
) +
theme(legend.position = "none")
```