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
220
%hogehoge%で二項演算子/create_binary_operators_in_r_language
florets1
June 10, 2023
Tweet
Share
More Decks by florets1
See All by florets1
データハンドリング/data_handling
florets1
2
120
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
170
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
10
14k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
190
応用セッション_同じデータでもP値が変わる話/key_considerations_in_NHST_2
florets1
1
1k
お名前から性別を推測する/Guessing_gender_from_name
florets1
1
330
バタフライ効果/butterfly_effect
florets1
0
210
尤度/likelihood
florets1
3
850
同じデータでもP値が変わる話/key_considerations_in_NHST
florets1
1
1.2k
Other Decks in Programming
See All in Programming
ECMAScript仕様を読むのに必要な知識 - ダイジェスト版
syumai
4
2.5k
【TID2024】模擬講義:プログラマと一緒にゲームをデザインしてみよう!
akatsukigames_tech
0
380
Playwrightから始めるVisual Regression Testingのススメ by とっと
totto2727
2
1.8k
Uncharted packages (Laravel Live Denmark)
freekmurze
0
140
マイグレーションコード自作して File-Based Routing に自動移行!! ~250 ページの歴史的経緯を添えて~
cut0
1
240
Some more adventure of Happy Eyeballs
coe401_
2
150
Rubyとクリエイティブコーディングの輪の広がり / The Growing Circle of Ruby and Creative Coding
chobishiba
1
220
TypeScriptで 負荷テストを書こう 〜k6のシングルバイナリの秘密〜
dora1998
7
2.8k
dRuby 入門者によるあなたの身近にあるdRuby 入門
makicamel
4
340
仮想ファイルシステムを導入して開発環境のストレージ課題を解消する
segadevtech
2
390
月間4.5億回再生を超える大規模サービス TVer iOSアプリのリアーキテクチャ戦略 - iOSDC2024
techtver
PRO
1
570
rbs-inlineを導入してYARDからRBSに移行する
euglena1215
1
200
Featured
See All Featured
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
230
17k
Art, The Web, and Tiny UX
lynnandtonic
294
20k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
27
7.4k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
131
32k
Debugging Ruby Performance
tmm1
72
12k
Why You Should Never Use an ORM
jnunemaker
PRO
53
8.9k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
41
6.4k
How To Stay Up To Date on Web Technology
chriscoyier
785
250k
The Illustrated Children's Guide to Kubernetes
chrisshort
46
48k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
325
21k
Agile that works and the tools we love
rasmusluckow
327
20k
Scaling GitHub
holman
458
140k
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 パイプラインが強かった