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
260
%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
0
300
カイ二乗検定は何をやっているのか/What_Does_the_Chi-Square_Test_Do
florets1
6
2.1k
直積は便利/direct_product_is_useful
florets1
3
320
butterfly_effect/butterfly_effect_in-house
florets1
1
140
データハンドリング/data_handling
florets1
2
180
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
240
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
11
15k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
230
応用セッション_同じデータでもP値が変わる話/key_considerations_in_NHST_2
florets1
1
1.1k
Other Decks in Programming
See All in Programming
CNCF Project の作者が考えている OSS の運営
utam0k
6
710
Honoをフロントエンドで使う 3つのやり方
yusukebe
7
3.2k
Rails アプリ地図考 Flush Cut
makicamel
1
120
Amazon S3 TablesとAmazon S3 Metadataを触ってみた / 20250201-jawsug-tochigi-s3tables-s3metadata
kasacchiful
0
160
2024年のWebフロントエンドのふりかえりと2025年
sakito
2
240
CI改善もDatadogとともに
taumu
0
110
仕様変更に耐えるための"今の"DRY原則を考える / Rethinking the "Don't repeat yourself" for resilience to specification changes
mkmk884
0
110
プログラミング言語学習のススメ / why-do-i-learn-programming-language
yashi8484
0
130
Immutable ActiveRecord
megane42
0
140
Domain-Driven Transformation
hschwentner
2
1.9k
AWSマネコンに複数のアカウントで入れるようになりました
yuhta28
2
160
チームリードになって変わったこと
isaka1022
0
200
Featured
See All Featured
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
100
18k
Automating Front-end Workflow
addyosmani
1368
200k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.3k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
Facilitating Awesome Meetings
lara
52
6.2k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.3k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Designing for Performance
lara
604
68k
KATA
mclloyd
29
14k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.1k
Into the Great Unknown - MozCon
thekraken
35
1.6k
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 パイプラインが強かった