library("dplyr")
dplyr thank you note
thankyou
rstats
It’s that post-holiday time of year to write some thank yous! I’m getting excited to attend rstudio::conf next week, so in that spirit, I have put together a little thank you using dplyr
It’s that post-holiday time of year to write some thank yous! I’m getting excited to attend rstudio::conf next week, so in that spirit, I have put together a little thank you using dplyr
.
<-function(input, you = "you") {
dear cat(input, "\nDear ", you, ",", sep = "")
}
<- function(input, for_the = "gift") {
thank_you cat(input, "\n Thank you for the", for_the)
}
<- function(input, from_the_heart = "I hope you have a lovely New Year!") {
personal_touch cat(input, from_the_heart)
}
<- function(input, us = "us"){
from cat(input, "\n Cheers,\n", us)
}
"A dplyr Thank You Note" %>%
dear(you = "R Studio") %>%
thank_you(for_the = "opportunity to attend rstudio::conf.") %>%
personal_touch(from_the_heart = "We are SO looking forward to learning from and with you all.") %>%
from(us = "Lucy, Jacquelyn, and Alli")
A dplyr Thank You Note
Dear R Studio,
Thank you for the opportunity to attend rstudio::conf. We are SO looking forward to learning from and with you all.
Cheers,
Lucy, Jacquelyn, and Alli