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
%hogehoge%で二項演算子/create_binary_operators_in_r_l...
Search
florets1
June 10, 2023
Programming
0
280
%hogehoge%で二項演算子/create_binary_operators_in_r_language
florets1
June 10, 2023
Tweet
Share
More Decks by florets1
See All by florets1
仮説の取扱説明書/User_Guide_to_a_Hypothesis
florets1
4
300
複式簿記から純資産を排除する/eliminate_net_assets_from_double-entry_bookkeeping
florets1
1
390
カイ二乗検定は何をやっているのか/What_Does_the_Chi-Square_Test_Do
florets1
7
2.3k
直積は便利/direct_product_is_useful
florets1
3
380
butterfly_effect/butterfly_effect_in-house
florets1
1
180
データハンドリング/data_handling
florets1
2
220
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
280
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
11
15k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
260
Other Decks in Programming
See All in Programming
Enterprise Web App. Development (2): Version Control Tool Training Ver. 5.1
knakagawa
1
120
KotlinConf 2025 現地で感じたServer-Side Kotlin
n_takehata
1
230
PHP 8.4の新機能「プロパティフック」から学ぶオブジェクト指向設計とリスコフの置換原則
kentaroutakeda
2
470
つよそうにふるまい、つよい成果を出すのなら、つよいのかもしれない
irof
1
300
CursorはMCPを使った方が良いぞ
taigakono
1
170
生成AIで日々のエラー調査を進めたい
yuyaabo
0
640
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
1
110
WindowInsetsだってテストしたい
ryunen344
1
190
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
16
3.1k
AWS CDKの推しポイント 〜CloudFormationと比較してみた〜
akihisaikeda
3
310
A comprehensive view of refactoring
marabesi
0
970
GoのGenericsによるslice操作との付き合い方
syumai
3
680
Featured
See All Featured
A Tale of Four Properties
chriscoyier
160
23k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.2k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Building an army of robots
kneath
306
45k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Adopting Sorbet at Scale
ufuk
77
9.4k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
How GitHub (no longer) Works
holman
314
140k
Why You Should Never Use an ORM
jnunemaker
PRO
56
9.4k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.4k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
107
19k
Transcript
1 2023.06.10 Tokyo.R #106 %hogehoge%で二項演算子
2 知らなかった~
3 データフレーム同士を比較する演算子
setdiff( 4 df1 df2 , )= setdiff( df2 df1 ,
)=
rbind ( 5 , )=
6 df1 %compare% データフレーム同士を比較する演算子 df2 ◦ = 結果
7 df1 df2 df3 %compare% 3つのデータフレームを比較する ◦ = 0件 ◦
df1 df2 df3 いいじゃないか!と思ったのですが
二項演算子のメリット 演算の入れ子構造を分解できる。 演算を連鎖できる。 8
二項演算子のメリット 演算の入れ子構造を分解できる。 演算を連鎖できる。 9 結局パイプラインでいいかも
パイプラインも二項演算子 演算の入れ子構造を分解できる。 演算を連鎖できる。 10 パイプラインが強かった