library(googlesheets4)
<- "https://docs.google.com/spreadsheets/d/BUDDIES_SHEET_ID/"
url <- read_sheet(url) buddy_form
The buddy scheme
Next buddy pairings
The sign-up form is open for the next round of the buddy scheme.
It closes on Sunday December 1st, 2024 and e-mails introducing the buddy pairs will be sent on Monday December 2nd.
About the buddy scheme
The buddies scheme provides an opportunity to foster deeper connections between members of the rainbowR community, encouraging conversations between people who may not meet otherwise. We envisage this buddy scheme as primarily social – you don’t have to talk about R, though it will be something you have in common. Any experience level with R is welcome!
How it works
- Folks opt-in via this sign-up form
- Buddy pairs are randomly assigned
- E-mails are sent to each pair making the introduction.
This is implemented in R, as outlined below.
We trust that the assigned buddies will want to communicate with each other, and get in touch with each other via email. We anticipate that buddies will arrange a meet-up (most likely online), though there is no firm requirement to do so.1
In the form we ask for a little about yourself and things that you’d be interested in talking about or doing together, and give some examples of things you might consider:
- Discuss/get feedback on a project you’re working on (either R-related or something completely different)
- Explore a tidyRainbow dataset together
- Work on some Advent of Code puzzles together (either new ones in December or some from previous years)
- Do some pair programming
- Play some online games, e.g. some of those listed here
- General chat is fine too!
To help get the conversation started, what you write about yourself and your interests will be included in the emails introducing each buddy pair (though buddies are assigned randomly, not on mutual interests).
We run the scheme every three months, and the way it’s implemented ensures that you’ll always be paired with someone you haven’t been paired with before.2
Keeping it safe
We want the scheme to be fun and safe for everyone, so it operates under the rainbowR code of conduct. All the information entered in the sign-up form is confidential. It is seen just by me3 and the assigned buddies. There is a GitHub repo for the implementation of the scheme, but no personal details will ever be checked in there. If you’re interested in taking part but have any questions or concerns, please email hello@rainbowr.org and I will do my best to address them.
Implementation
Since rainbowR members are interested in R, here’s an outline and desciption of the code. For the full implementation, the code is on GitHub.
The sign-up form is a Google Form, and the responses are stored in a Google Sheet. The data is read into R using the googlesheets4 package.
The code chunk above isn’t evaluated in this post, so here’s a dummy table to demonstrate on instead:
library(dplyr)
<- tribble(
buddy_df ~first_name, ~last_name, ~email, ~about, ~interests,
"Alice", "S", "alice@example.com", "I'm a data scientist at a small company in London", "I'm interested in data visualisation and machine learning. I'd like to discuss a project I'm working on, and maybe do some pair programming.",
"Bob", "T", "bob@example.com", "I'm a student in a small town in California", "I'd like to chat and play some online games.",
"Charlie", "U", "charlie@example,com", "I'm an author and just starting to explore R", "I'd love to explore a TidyRainbow dataset together.",
"Dana", "V", "dana@example.com", "I'm a software engineer in a big company in New York", "Doing some Advent of Code puzzles together sounds fun!"
)
Then there’s some code to check the number of responses, and prompt me to sign-up if there’s an odd number. Everyone who signs up will get a buddy!
Next, we define a function that randomly assigns pairs, using some dplyr wrangling:
<- function(buddy_df, seed = 1) {
make_buddy_pairs
# set the seed to seed
set.seed(seed)
# create a vector pairs which repeats each of the numbers from 1
# to half the number in buddy_df and shuffles them (assume even number)
<- sample(rep(1:(nrow(buddy_df)/2), 2))
pairs
# add pairs to buddy_df
<- buddy_df |>
buddy_df mutate(pair = pairs) |>
arrange(pair)
# from buddy_df create a tibble buddy_pairs with half the rows of buddy_df
# with a column called pair with the numbers 1 to half the number of rows in buddy_df
# a column called buddy1 with the first email associated with pair
# and a column called buddy2 with the second email associated with pair
<- buddy_df |>
buddy_pairs group_by(pair) |>
summarise(buddy1 = email[1],
buddy2 = email[2])
# in buddy_pairs, create first_buddy which is the lesser of buddy1 and buddy2
# and create second_buddy which is the greater of buddy1 and buddy2
# then select first_buddy and second_buddy
# this will make it easier to compare buddy_pairs with previous_buddy_pairs later
<- buddy_pairs |>
buddy_pairs mutate(first_buddy = pmin(buddy1, buddy2),
second_buddy = pmax(buddy1, buddy2)) |>
select(first_buddy, second_buddy)
return(list(buddy_pairs = buddy_pairs,
buddy_df = buddy_df))
}
Running that would be enough to determine the pairings, but we’re already thinking ahead to future runs, and want to set things up so that people don’t get the same buddy twice. We’ll manage that by storing previous pairings in previous_buddy_pairs.csv
, checking if any of the new pairings match any of those, and rerunning make_buddy_pairs()
with different seeds until there are no matches. The make_buddies()
function does that:
<- function(buddy_df, seed = 1) {
make_buddies
# sanity check if buddy_df has an odd number of rows
if(nrow(buddy_df) %% 2 == 1) {
stop("buddy_df must have an even number of rows")
}
# first run
<- make_buddy_pairs(buddy_df, seed)
buddies <- buddies$buddy_pairs
buddy_pairs <- buddies$buddy_df
buddy_df
# if previous_buddy_pairs.csv exists, read it into previous_buddy_pairs
# if not, create it
if(file.exists("previous_buddy_pairs.csv")) {
<- read_csv("previous_buddy_pairs.csv")
previous_buddy_pairs else {
} <- tibble(first_buddy = character(),
previous_buddy_pairs second_buddy = character())
}
# while any of the rows in buddy_pairs are in previous_buddy_pairs
# increment seed by 1 and run make_buddy_pairs again,
# updating buddy_pairs and buddy_df
while(any(apply(buddy_pairs, 1, function(x) paste(x, collapse = " ")) %in%
apply(previous_buddy_pairs, 1, function(x) paste(x, collapse = " ")))) {
<- seed + 1
seed <- make_buddy_pairs(buddy_df, seed)
updated_buddies <- updated_buddies$buddy_pairs
buddy_pairs <- updated_buddies$buddy_df
buddy_df
}
# create updated_buddy_pairs and write it to previous_buddy_pairs.csv
<- bind_rows(previous_buddy_pairs, buddy_pairs)
updated_buddy_pairs # Don't write the csv during the blog post demo!
# write_csv(updated_buddy_pairs, "previous_buddy_pairs.csv")
# return a list with buddy_pairs, buddy_df, and seed
return(list(buddy_pairs = buddy_pairs,
buddy_df = buddy_df,
final_seed = seed))
}
We’re now ready assign buddies!
<- make_buddies(buddy_df)
buddies <- buddies$buddy_df buddies_df
Next, we need to wrangle the data into a format that’s useful for sending emails. We’re going to use the blastula package to send emails, which requires a data frame with one row per pair:
<- buddies_df |>
buddies_for_email group_by(pair) |>
summarise(first_name1 = first_name[1],
first_name2 = first_name[2],
last_name1 = last_name[1],
last_name2 = last_name[2],
email1 = email[1],
email2 = email[2],
about1 = about[1],
about2 = about[2],
interests1 = interests[1],
interests2 = interests[2])
Adapting an example by James Balamuta, we next create a function that takes a data frame with one row per pair and composes an email from a template, for example:
= function(buddies) {
buddies_email_template
|>
buddies glue_data(
"Hello {first_name1} {last_name1} and {first_name2} {last_name2},\n\n\n\n",
"You are now rainbowR buddies! \n\n\n\n",
"**About {first_name1}**: {about1} \n\n\n\n",
"**About {first_name2}**: {about2} \n\n\n\n",
"**{first_name1}** is interested in {interests1}. \n\n\n\n",
"**{first_name2}** is interested in {interests2}. \n\n\n\n",
"You can contact each other at [{email1}](mailto:{email1}) and [{email2}](mailto:{email2}).\n\n\n\n",
"Over to you! \n\n\n\n"
|>
) md() |>
compose_email()
}
Finally, we loop over the rows of buddies_for_email
, compose an email for each pair, and send it, using previously stored credentials:4
for (i in seq_len(nrow(buddies_for_email))) {
# Retrieve current buddies
<- buddies_for_email[i, ]
buddy_pair
# get email addresses
<- c(buddy_pair$email1, buddy_pair$email2)
to
# Construct the e-mail using our custom template.
<- buddies_email_template(buddy_pair)
email_contents
# Send e-mail
%>%
email_contents smtp_send(
from = "hello@rainbowr.org",
to = to,
subject = "Your new rainbowR buddy!",
credentials = creds_key(id = "rainbowr")
) }
That’s it! Buddy pairs are now introduced and it’s over to them to get to know each other.
Footnotes
If you haven’t had any contact at all from your buddy after a month, email hello@rainbowr.org and we’ll try and pair you with someone else.↩︎
As long as you always sign-up with the same e-mail address.↩︎