Ironically, it’s about verbosity!
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. 😅
Clarifications:
viz
collection
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")
If you see mistakes or want to suggest changes, please create an issue on the source repository.
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} }