From 47ea25d435bb01dd91e73171c95fe7c7d9a66534 Mon Sep 17 00:00:00 2001 From: Lucky <66523959+l-ucky@users.noreply.github.com> Date: Sat, 26 Aug 2023 20:23:21 -0300 Subject: [PATCH] Changed top_n(40) to top_n(50). --- Difference Between Data Frame Observations by Day.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Difference Between Data Frame Observations by Day.R b/Difference Between Data Frame Observations by Day.R index aac58f6..3187bc0 100644 --- a/Difference Between Data Frame Observations by Day.R +++ b/Difference Between Data Frame Observations by Day.R @@ -79,7 +79,7 @@ fill_bar <- case_when( # bar graph of difference between Day 2, and Day 1. df_merged2 %>% - top_n(40) %>% + top_n(50) %>% mutate(word = reorder(word, result)) %>% ggplot(aes(word, result)) + theme(legend.position = "none", axis.title.y = element_blank()) +