From b9f4ad61c3f106284ba4583016b47db3d1b7cabb Mon Sep 17 00:00:00 2001 From: mine-cetinkaya-rundel Date: Sun, 9 Apr 2023 23:00:40 -0400 Subject: [PATCH] Remove extraneous comma, closes #1413 --- communication.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communication.qmd b/communication.qmd index 683b620..45716b8 100644 --- a/communication.qmd +++ b/communication.qmd @@ -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") ```