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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Jennifer (Jenny) Bryan
September 26, 2016
Programming
2
660
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
1.1k
How to name files, the sequel
jennybc
7
3.7k
object of type closure is not subsettable
jennybc
12
6.8k
Tidy eval in context
jennybc
9
2.1k
reprex: Reproducible Examples with R
jennybc
7
24k
Zen And The aRt Of Workflow Maintenance
jennybc
25
21k
purrr workshop
jennybc
10
8.4k
Code Smells and Feels
jennybc
7
8.1k
Row-oriented workflows in R with the tidyverse
jennybc
14
10k
Other Decks in Programming
See All in Programming
Go Conference mini in Sendai 2026 : Goに新機能を提案し実装されるまでのフロー徹底解説
yamatoya
0
540
2026年は Rust 置き換えが流行る! / 20260220-niigata-5min-tech
girigiribauer
0
220
守る「だけ」の優しいEMを抜けて、 事業とチームを両方見る視点を身につけた話
maroon8021
3
400
Unity6.3 AudioUpdate
cova8bitdots
0
120
DSPy入門 Pythonで実現する自動プロンプト最適化 〜人手によるプロンプト調整からの卒業〜
seaturt1e
1
600
20260228_JAWS_Beginner_Kansai
takuyay0ne
5
460
Docコメントで始める簡単ガードレール
keisukeikeda
1
100
CopilotKit + AG-UIを学ぶ
nearme_tech
PRO
2
140
CSC307 Lecture 14
javiergs
PRO
0
450
AI駆動開発の本音 〜Claude Code並列開発で見えたエンジニアの新しい役割〜
hisuzuya
4
490
2026/02/04 AIキャラクター人格の実装論 口 調の模倣から、コンテキスト制御による 『思想』と『行動』の創発へ
sr2mg4
0
720
AWS×クラウドネイティブソフトウェア設計 / AWS x Cloud-Native Software Design
nrslib
12
2.6k
Featured
See All Featured
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
210
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
1
150
AI Search: Implications for SEO and How to Move Forward - #ShenzhenSEOConference
aleyda
1
1.1k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
370
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.4k
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
120
The SEO identity crisis: Don't let AI make you average
varn
0
400
Prompt Engineering for Job Search
mfonobong
0
180
We Are The Robots
honzajavorek
0
190
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