So I'm running some code on a dataset that is 9992 rows and 10 columns. Specifically, I'm checking if the dataset's glimpse is a tibble, i.e., data %>% glimpse() %>% is_tibble(). It is outputting TRUE. But on other datasets, like the cars dataset, I'm getting FALSE. Why might this be the case?
I ran data %>% glimpse() %>% is_tibble() and cars %>% glimpse() %>% is_tibble()