This poster was designed using the #betterposter format. Click here to learn more.
Communities of practice (CoPs) are groups of people who share a common interest and participate in activities that promote learning. Originally face-to-face, the internet has ushered in many new platforms for CoPs. Twitter hashtags act as virtual homes for many. The #TidyTuesday hashtag serves as a community for those interested in data science and visualization. It involves weekly visualization challenges utilizing public data sets and the R programming language. Users contribute graphics and code to share their work and also as opportunities to learn from one another. As the importance of data science grows, the #TidyTuesday CoP is a promising context for the exploration of learning in online communities and of how individuals develop capabilities regarding visualization and programming.
Every Tuesday, a unique data set is posted on Twitter using the hashtag #TidyTuesday. Participants use the data set to create visualizations using R programming language and the Tidyverse packages. Participants then share their visualization on Twitter and link to their code (on Github). This is done not only to share their own work, but as chances to learn from each other. It is open to contributors of any skill level.
R is a statistical programming language that is used for data analysis, modeling, machine learning, and data visualization. It has been around for over 20 years and has become a sought after programming language in data analysis, statistics, business analytics, and other fields. Below is an example of simple R code and a simple plot produced with this code.
library(tidyverse)
library(ggplot2)
iris %>%
ggplot() +
geom_point(aes(x=Sepal.Length,y=Sepal.Width))
The current research represents an exploratory project that examines one year of #TidyTuesday tweets through descriptive statistics, content analyses using the TidyCode
package, and qualitative coding in order to understand the activities and potential impacts of the #TidyTuesday CoP. It examines who contributes, the content of their tweets, the makeup of their code, and how their code changes over time.
Data was pulled from TidyTuesday Rocks, an interactive app that allows you to explore TidyTuesday contributions.
There were 4,418 tweets contributed to the data set.
There were 2,428 unique contributions to the data set. * A contribution is any post that included an image.
There were 800 unique contributors. * Contributors are those who tweeted some image during #TidyTuesday
There were 46.7 mean contributions per week.
Each user contributed an average of 5.93 times in one year.
Along with their graphic visualizations, many contributors also share their code via Github. This allows others to reproduce contributors’ work, possibly aiding in data visualization skill development.
Code from contributors’ Github repositories were scraped and subsequently analyzed using the TidyCode
package. This package allows individual functions to be classified according to a crowd-sourced dictionary of R functions. These classifications include setup, import, export, data cleaning (encompassing data wrangling and munging), visualization, communication, modeling, exploration, and evaluation. The dictionary was modified to include non-classified functions and to reclassify functions based on the content of data visualization.
First, the average number of functions were tweet number was analyzed. Tweet number represents each users unique contribution for that week. The analysis showed that over time the mean number of functions increase. This could suggest writing longer and more complex code, especially code that includes a larger variety of functions. A simple Pearson correlation between mean functions and tweet number also suggested that as tweet numbers increase, so do mean functions (r = .54, p < .001 - a medium correlation).
An analysis of the proportion of functions by classification per week was also analyzed. This analysis focused on data cleaning, data visualization, and data communication. It showed that, while proportion fluctuates;
geom_label(), geom_curve(), str_wrap(), arrow()
mutate(), filter(), case_when()
and a variety of join()
functionstheme(), geom_path(), aes(), facet_wrap()
150 random tweets (initial contributions) were samples from the data and coded. These codes were then used to reveal several themes in the tweets.
It was found that a majority of tweets were visualization focused, either explaining the visualizations themselves (how they were made, what they looked at) or discussing interesting findings in the data.
Some examples:
Theme | Example |
---|---|
Explaining Data | #TidyTuesday turned into tidy Saturday this week! Looking at plastic pollution around the globe. I made a waffle chart of the five countries with most mismanaged plastic waste. |
Discussing Findings | #tidytuesday I used to think all nobel peace price winners are grey old guys. Turns out, they are getting younger compared to the other folks. |
Engaging Community | My #tidytuesday viz this week is inspired by awesome people who make scarves from data. Can’t knit, but I can geom_linerange |
Showing Emotion | First ever #TidyTuesday submission! I’ve always been reluctant to share, because I see so many great submissions. But today I’ve done some new cool things (first time I made a map in R!!) and I’m quite happy with the result. |
Likewise, 150 randomly sampled retweets were coded. Retweets were chosen as they can reveal how users are not only contributing to the #TidyTuesday challenge itself but how they are engaging with the community. Most retweets were simply promoting #TidyTuesday (e.g. “It’s #TidyTuesday yall!”)and these were removed from analysis as they were not seen as substantive. More substantive tweet content was found to mostly be about celebrating others’ work, related to their own learning via the community, or sharing the work of others.
Theme | Example |
---|---|
Celebrating Others | Jake’s dataviz work as part of #TidyTuesday is always beautiful. This one is especially great. Check out the legend he made using ggplot. |
Learning | Thanks to #TidyTuesday for making it so easy to learn/use #R and to get to know others! #grateful |
Sharing Others’ Visualizations | This thread highlights one of my favorite parts of #TidyTuesday, spontaneous and friendly collaboration!! Sara continues to do awesome deep dives on the #tidytuesday datasets! Lots of great content here and on her GitHub. |
This preliminary research has education-related implications for those involved in data science. It suggests that participating in #TidyTuesday can help one develop their data visualization skills by learning from others’ visuals and code and by exercising one’s own skills. It also indicates that sustained participation can help increase the complexity of one’s code, the efficiency of one’s code, and the graphics produced may contain enhanced communicative ability.
Further research will be used to verify and enhance these claims.