I would like to see the y-axis (in the plot is flipped) starting at some arbitrary value, like 7.5
After a little bit of researching, I came across ylim, but in this case is giving me some
errors:
Scale for 'y' is already present. Adding another scale for 'y', which will
replace the existing scale.
Warning message:
Removed 10 rows containing missing values (geom_col). 
This is my code, and a way to download the data I'm using:
install.packages("remotes")
remotes::install_github("tweed1e/werfriends")
library(werfriends)
friends_raw <- werfriends::friends_episodes
library(tidytext)
library(tidyverse)
#"best" writers with at least 10 episodes
friends_raw %>%
  unnest(writers) %>%
  group_by(writers) %>%
  summarize(mean_rating = mean(rating),
            n = n()) %>%
  arrange(desc(mean_rating)) %>%
  filter(n > 10) %>%
  head(10) %>%
  mutate(writers = fct_reorder(writers, mean_rating)) %>%
  ggplot(aes(x = writers, y = mean_rating, fill = writers)) + geom_col() + 
  coord_flip() + theme(legend.position = "None") + scale_y_continuous(breaks = seq(7.5,10,0.5)) + 
  ylim(7.5,10)

 
    