First Visualization

Ironically, it’s about verbosity!

Mathieu Glachant https://github.com/syvwlch
2022-10-09

I put up the first demo visualization based on the said.csv data. Given how many words I’ve already written on this website to get to this point, the subject is rather ironic: verbosity, and in particular in asides to the reader. 😅

What It Took to Get Here

Clarifications:

Lessons Learned

The group_by() + summarise() pattern requires an explicit assignment of a summary value any other column you want to keep, e.g using mean() here to keep the words when grouping by the unique line id:

said  %>%
  group_by(line) %>%
  summarize(words = mean(words), .groups = "drop")

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.

Citation

For attribution, please cite this work as

Glachant (2022, Oct. 9). Data Ignota: First Visualization. Retrieved from https://syvwlch.github.io/Data-Ignota/posts/2022-10-09-first-visualization/

BibTeX citation

@misc{glachant2022first,
  author = {Glachant, Mathieu},
  title = {Data Ignota: First Visualization},
  url = {https://syvwlch.github.io/Data-Ignota/posts/2022-10-09-first-visualization/},
  year = {2022}
}