Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
The pipe operator
Search
Jennifer (Jenny) Bryan
September 26, 2016
Programming
2
630
The pipe operator
Small handful of slides I refer to while live coding in STAT 545
http://stat545.com
Jennifer (Jenny) Bryan
September 26, 2016
Tweet
Share
More Decks by Jennifer (Jenny) Bryan
See All by Jennifer (Jenny) Bryan
Positron for R and RStudio Users
jennybc
2
790
How to name files, the sequel
jennybc
6
2.7k
object of type closure is not subsettable
jennybc
11
6.4k
Tidy eval in context
jennybc
9
1.9k
reprex: Reproducible Examples with R
jennybc
7
22k
Zen And The aRt Of Workflow Maintenance
jennybc
25
20k
purrr workshop
jennybc
10
8.1k
Code Smells and Feels
jennybc
7
7.8k
Row-oriented workflows in R with the tidyverse
jennybc
14
9.6k
Other Decks in Programming
See All in Programming
SwiftUI API Design Lessons
niw
1
290
AI Agents with JavaScript
slobodan
0
250
Youtube Lofier - Chrome拡張開発
ninikoko
0
2.4k
小田原でみんなで一句詠みたいな #phpcon_odawara
stefafafan
0
340
API for docs
soutaro
2
1.3k
Compose Hot Reload is here, stop re-launching your apps! (Android Makers 2025)
zsmb
1
520
Sharing features among Android applications: experience feedback
jbvincey
0
110
Optimizing JRuby 10
headius
0
340
Agentic Applications with Symfony
el_stoffel
2
310
Ruby's Line Breaks
yui_knk
2
1.2k
VitestのIn-Source Testingが便利
taro28
6
2.1k
「影響が少ない」を自分の目でみてみる
o0h
PRO
2
1.1k
Featured
See All Featured
Unsuck your backbone
ammeep
670
57k
Writing Fast Ruby
sferik
628
61k
It's Worth the Effort
3n
184
28k
GitHub's CSS Performance
jonrohan
1030
460k
A better future with KSS
kneath
239
17k
Statistics for Hackers
jakevdp
798
220k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
41
2.2k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
178
53k
Scaling GitHub
holman
459
140k
Music & Morning Musume
bryan
47
6.5k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
390
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Transcript
http://stat545.com https://ubc-mds.github.io random slides we refer to in the midst
of live coding %>%
@JennyBryan @jennybc @STAT545 http://stat545.com Dr. Jennifer (Jenny) Bryan Department of
Statistics University of British Columbia
[email protected]
filter(gapminder, country == “Canada”) gapminder %>% filter (country == “Canada”)
mean(x) x %>% mean()
whatever(arg1, arg2, arg3, …) arg1 %>% whatever(arg2, arg3, …)
from various Hadley Wickham talks
the magrittr package provides %>% which is used heavily and
re-exported in the tidy verse https://github.com/smbache/magrittr https://cran.r-project.org/web/packages/magrittr/index.html https://github.com/hadley/tidyverse https://cran.r-project.org/web/packages/tidyverse/index.html