tibble (previously tbl_df) is a version of a data frame created by the dplyr data frame manipulation package in R. It prevents long ta
tibble
tbl_df
dplyr
You could also use
print(tbl_df(df), n=40)
or with the help of the pipe operator
df %>% tbl_df %>% print(n=40)
To print all rows specify tbl_df %>% print(n = Inf)
tbl_df %>% print(n = Inf)