1

I am facing the following issue please help me out.

Error in tbl_df(hflights) : could not find function "tbl_df"

NelsonGon
  • 13,015
  • 7
  • 27
  • 57
shubham
  • 21
  • 2
  • Does this answer your question? [Error: could not find function ... in R](https://stackoverflow.com/questions/7027288/error-could-not-find-function-in-r) – NelsonGon Nov 05 '19 at 06:51
  • Did you load `tibble` ie `install.packages("tibble");library(tibble)`? – NelsonGon Nov 05 '19 at 06:51

1 Answers1

0

Be sure to load tibble package before using the function. If you haven't installed the package yet, you can install and load it using

install.packages("tibble")
library(tibble)
Nuclear03020704
  • 549
  • 9
  • 22