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
890
How to name files, the sequel
jennybc
7
3.2k
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.2k
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
#QiitaBash TDDで(自分の)開発がどう変わったか
ryosukedtomita
1
350
知って得する@cloudflare_vite-pluginのあれこれ
chimame
1
140
なぜあなたのオブザーバビリティ導入は頓挫するのか
ryota_hnk
5
560
Advanced Micro Frontends: Multi Version/ Framework Scenarios
manfredsteyer
PRO
0
150
Go製CLIツールをnpmで配布するには
syumai
2
1.1k
kiroでゲームを作ってみた
iriikeita
0
140
抽象化という思考のツール - 理解と活用 - / Abstraction-as-a-Tool-for-Thinking
shin1x1
1
930
AIコーディングエージェント全社導入とセキュリティ対策
hikaruegashira
15
9.3k
Reactの歴史を振り返る
tutinoko
1
170
商品比較サービス「マイベスト」における パーソナライズレコメンドの第一歩
ucchiii43
0
270
CIを整備してメンテナンスを生成AIに任せる
hazumirr
0
510
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
180
Featured
See All Featured
BBQ
matthewcrist
89
9.8k
Documentation Writing (for coders)
carmenintech
73
5k
Become a Pro
speakerdeck
PRO
29
5.5k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
6k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
The Cost Of JavaScript in 2023
addyosmani
51
8.7k
Site-Speed That Sticks
csswizardry
10
750
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
540
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
1k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
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