SyntaxFix
Write A Post
Hire A Developer
Questions
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)