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
What I often do when I want to see the output of a pipe like that is pipe it straight to View()
library(dplyr)
library(tidytext)
tidy_books %>%
anti_join(stop_words) %>%
count(word, sort=TRUE) %>%
View()
If you want to save this to a new object that you can work with later, you can assign it to a new variable name at the beginning of the pipe.
word_counts <- tidy_books %>%
anti_join(stop_words) %>%
count(word, sort=TRUE)