Caveat: I'm an R newbie so bear with me. Thank you kindly.
Is ggplot not part of tidyverse? I installed the tidyverse packages and library in my console script so I assumed it would knit since I was creating a markdown with the same dataset. The code chunk below is what I want generated. The scatterplot generates well but time to knit and I get errors.
Just to try, I ran the library(ggplot2) function in Markdown, tried to knit, and same error still.
ggplot(data = netflix_titles, aes(x = release_year , y = type)) + geom_point() + geom_jitter()