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
610
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
1
550
How to name files, the sequel
jennybc
6
2k
object of type closure is not subsettable
jennybc
11
6.2k
Tidy eval in context
jennybc
9
1.8k
reprex: Reproducible Examples with R
jennybc
7
20k
Zen And The aRt Of Workflow Maintenance
jennybc
25
19k
purrr workshop
jennybc
10
7.8k
Code Smells and Feels
jennybc
7
7.5k
Row-oriented workflows in R with the tidyverse
jennybc
14
9.4k
Other Decks in Programming
See All in Programming
CSC305 Lecture 13
javiergs
PRO
0
120
Boost Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
600
僕がつくった48個のWebサービス達
yusukebe
18
17k
JaSST 24 九州:ワークショップ(は除く)実践!マインドマップを活用したソフトウェアテスト+活用事例
satohiroyuki
0
250
Snowflake x dbtで作るセキュアでアジャイルなデータ基盤
tsoshiro
2
390
EventSourcingの理想と現実
wenas
5
2k
VR HMDとしてのVision Pro+ゲーム開発について
yasei_no_otoko
0
100
デプロイを任されたので、教わった通りにデプロイしたら障害になった件 ~俺のやらかしを越えてゆけ~
techouse
51
31k
Googleのテストサイズを活用したテスト環境の構築
toms74209200
0
260
Modern Angular: Renovation for Your Applications
manfredsteyer
PRO
0
170
飲食業界向けマルチプロダクトを実現させる開発体制とリアルな現状
hiroya0601
1
390
Vitest Browser Mode への期待 / Vitest Browser Mode
odanado
PRO
2
1.6k
Featured
See All Featured
Writing Fast Ruby
sferik
626
60k
Become a Pro
speakerdeck
PRO
24
5k
RailsConf 2023
tenderlove
29
870
Music & Morning Musume
bryan
46
6.1k
For a Future-Friendly Web
brad_frost
175
9.4k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
How STYLIGHT went responsive
nonsquared
95
5.1k
Docker and Python
trallard
40
3.1k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
355
29k
The Cost Of JavaScript in 2023
addyosmani
45
6.6k
How to Ace a Technical Interview
jacobian
275
23k
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