in class wiki activity

In Class: Wiki Title Generation Activity

This is how I collected 10 random wiki pages!

Next, I used a loop function to grab 10 different pages.

Finally, I included a histogram visual detailing the distribution of page name lengths.

#| echo: false
#| eval: false


wiki_pages %>% 
  ggplot(aes(x=nchar(wiki_pages))) +
  geom_histogram(binwidth = 5)