First off - I am a beginner at programming and R, so excuse me if this is a silly question. I am having trouble viewing more than ten rows in a tibble that is generated from
Although this question has a perfectly ok answer, the comment from @Marius is much shorter, so:
tidy_books %>% print(n = 100)
As you say you are a beginner you can replace n = 100 with any number you want
n = 100
Also as you are a beginner, to see the whole table:
tidy_books %>% print(n = nrow(tidy_books))