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
350
カイ二乗検定は何をやっているのか/What_Does_the_Chi-Square_Test_Do
florets1
6
2.2k
直積は便利/direct_product_is_useful
florets1
3
340
butterfly_effect/butterfly_effect_in-house
florets1
1
160
データハンドリング/data_handling
florets1
2
190
カイ二乗検定との遭遇/The_path_to_encountering_the_chi-square_test
florets1
1
260
率の平均を求めてはいけない/Do_Not_Average_Rates
florets1
11
15k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
240
応用セッション_同じデータでもP値が変わる話/key_considerations_in_NHST_2
florets1
1
1.1k
Other Decks in Programming
See All in Programming
PHPのガベージコレクションを深掘りしよう
rinchoku
0
260
Go1.24 go vetとtestsアナライザ
kuro_kurorrr
2
800
パスキーのすべて / 20250324 iddance Lesson.5
kuralab
0
150
Django for Data Science (Boston Python Meetup, March 2025)
wsvincent
0
310
ベクトル検索システムの気持ち
monochromegane
30
9.7k
SEAL - Dive into the sea of search engines - Symfony Live Berlin 2025
alexanderschranz
1
110
英語文法から学ぶ、クリーンな設計の秘訣
newnomad
1
290
Kamal 2 – Get Out of the Cloud
aleksandrov
1
160
PHPでお金を扱う時、終わりのない 謎の1円調査の旅にでなくて済む方法
nakka
4
1.5k
データベースエンジニアの仕事を楽にする。PgAssistantの紹介
nnaka2992
9
4.4k
リアクティブシステムの変遷から理解するalien-signals / Learning alien-signals from the evolution of reactive systems
yamanoku
2
1.2k
Chrome Extension Techniques from Hell
moznion
1
150
Featured
See All Featured
Designing for humans not robots
tammielis
252
25k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
7
640
How GitHub (no longer) Works
holman
314
140k
How to Think Like a Performance Engineer
csswizardry
22
1.5k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
102
19k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
30
2.3k
BBQ
matthewcrist
88
9.6k
Statistics for Hackers
jakevdp
798
220k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
17
1.1k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.8k
Building an army of robots
kneath
304
45k
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 パイプラインが強かった