Hello,
I'm quite new to R and using the book R for Data Science.
I am trying to use a package called "nycflights13" but it won't open. I have seen others have similar issues on Stack Overflow but I haven't seen any solutions posted.
I have installed the "Rtools" package and "nycflights13" seems to load but when I run glimpse() or View() I get:
install.packages(nycflights13)
library(tidyverse)
library(nycflights13)
glimpse(nycflights13)
Error in glimpse(nycflights13) : object 'nycflights13' not found
View(nycflights13)
Error in View : object 'nycflights13' not found
I guess I can use another package, but as a new user of R, I'd like to know whether I'm missing something blindingly obvious.