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
270
%hogehoge%で二項演算子/create_binary_operators_in_r_language
florets1
June 10, 2023
Tweet
Share
More Decks by florets1
See All by florets1
複式簿記から純資産を排除する/eliminate_net_assets_from_double-entry_bookkeeping
florets1
1
360
カイ二乗検定は何をやっているのか/What_Does_the_Chi-Square_Test_Do
florets1
6
2.2k
直積は便利/direct_product_is_useful
florets1
3
350
butterfly_effect/butterfly_effect_in-house
florets1
1
160
データハンドリング/data_handling
florets1
2
200
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
270
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
11
15k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
250
応用セッション_同じデータでもP値が変わる話/key_considerations_in_NHST_2
florets1
1
1.2k
Other Decks in Programming
See All in Programming
Contribute to Comunities | React Tokyo Meetup #4 LT
sasagar
0
590
Cursorを活用したAIプログラミングについて 入門
rect
0
150
個人開発の学生アプリが企業譲渡されるまで
akidon0000
2
1.1k
状態と共に暮らす:ステートフルへの挑戦
ypresto
3
1.1k
Beyond_the_Prompt__Evaluating__Testing__and_Securing_LLM_Applications.pdf
meteatamel
0
100
The Nature of Complexity in John Ousterhout’s Philosophy of Software Design
philipschwarz
PRO
0
160
Orleans + Sekiban + SignalR でリアルタイムWeb作ってみた
tomohisa
0
230
Deoptimization: How YJIT Speeds Up Ruby by Slowing Down / RubyKaigi 2025
k0kubun
1
1.9k
파급효과: From AI to Android Development
l2hyunwoo
0
160
RuboCop: Modularity and AST Insights
koic
2
2.4k
AIコーディングエージェントを 「使いこなす」ための実践知と現在地 in ログラス / How to Use AI Coding Agent in Loglass
rkaga
4
1.2k
サービスレベルを管理してアジャイルを加速しよう!! / slm-accelerate-agility
tomoyakitaura
1
200
Featured
See All Featured
Code Review Best Practice
trishagee
67
18k
It's Worth the Effort
3n
184
28k
Facilitating Awesome Meetings
lara
54
6.3k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Fontdeck: Realign not Redesign
paulrobertlloyd
84
5.5k
Reflections from 52 weeks, 52 projects
jeffersonlam
349
20k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.2k
Build your cross-platform service in a week with App Engine
jlugia
230
18k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.6k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.7k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
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 パイプラインが強かった