See below for my code. This creates 2 plots, however I want to annote the JK Rowling book on my Fiction plot only. Genres are only Fiction and Non Fiction.
ggplot(data=books_df_new)+
  geom_jitter(mapping = aes(x=Year,y=Rating))+
  facet_wrap(~Genre)+
  annotate(
  "text",
  x=2012,
  y=3.37,
  label="The Casual Vacancy by JK Rowling (3.3)",
  size=2.3,
  fontface="bold")
