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
640
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
850
How to name files, the sequel
jennybc
6
2.8k
object of type closure is not subsettable
jennybc
12
6.5k
Tidy eval in context
jennybc
9
2k
reprex: Reproducible Examples with R
jennybc
7
23k
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.7k
Other Decks in Programming
See All in Programming
Passkeys for Java Developers
ynojima
3
860
iOSアプリ開発で 関数型プログラミングを実現する The Composable Architectureの紹介
yimajo
2
210
Rails産でないDBを Railsに引っ越すHACK - Omotesando.rb #110
lnit
1
160
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
230
DroidKnights 2025 - 다양한 스크롤 뷰에서의 영상 재생
gaeun5744
3
260
GraphRAGの仕組みまるわかり
tosuri13
7
350
Elixir で IoT 開発、 Nerves なら簡単にできる!?
pojiro
1
140
複数アプリケーションを育てていくための共通化戦略
irof
10
3.9k
セキュリティマネジャー廃止とクラウドネイティブ型サンドボックス活用
kazumura
1
170
AIエージェントによるテストフレームワーク Arbigent
takahirom
0
380
Benchmark
sysong
0
190
プロダクト開発でも使おう 関数のオーバーロード
yoiwamoto
0
150
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Bash Introduction
62gerente
614
210k
We Have a Design System, Now What?
morganepeng
52
7.6k
Side Projects
sachag
455
42k
Optimizing for Happiness
mojombo
379
70k
RailsConf 2023
tenderlove
30
1.1k
Practical Orchestrator
shlominoach
188
11k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.8k
Automating Front-end Workflow
addyosmani
1370
200k
Stop Working from a Prison Cell
hatefulcrawdad
269
20k
Adopting Sorbet at Scale
ufuk
77
9.4k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
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