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
Rでオセロ_tokyor_20230121/a_reversi-solver_in_R_ins...
Search
florets1
January 20, 2023
0
850
Rでオセロ_tokyor_20230121/a_reversi-solver_in_R_inspired_by_SQL
florets1
January 20, 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
15k
請求と支払を照合する技術/using_full_join_in_r
florets1
2
190
応用セッション_同じデータでもP値が変わる話/key_considerations_in_NHST_2
florets1
1
1k
お名前から性別を推測する/Guessing_gender_from_name
florets1
1
340
バタフライ効果/butterfly_effect
florets1
0
210
尤度/likelihood
florets1
3
850
同じデータでもP値が変わる話/key_considerations_in_NHST
florets1
1
1.2k
Featured
See All Featured
The World Runs on Bad Software
bkeepers
PRO
64
11k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
27
8.9k
From Idea to $5000 a Month in 5 Months
shpigford
378
46k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
122
18k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
26
1.9k
Infographics Made Easy
chrislema
239
18k
4 Signs Your Business is Dying
shpigford
179
21k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
22
1.7k
GraphQLとの向き合い方2022年版
quramy
43
13k
Scaling GitHub
holman
458
140k
KATA
mclloyd
27
13k
Done Done
chrislema
180
16k
Transcript
1 2023.01.21 Tokyo.R #103 Rでオセロ
2 SQLの話
3 a b SELECT * FROM a, b
4 SELECT * FROM a, b WHERE a.no=b.no a b
5 SELECT 原因.* FROM 原因, 結果 WHERE 結果が成功 結果から原因がわかるのでは?
6 SELECT 局面1.* FROM 局面1, 局面2, 局面3, .., 最終局面 WHERE
最終局面が勝利 オセロの勝てる手がわかるのでは?
7
8 という気持ちをRで表現しました
9 うれしいこと 局面1と最終局面の関係がわかる 最終局面が勝利となる局面1がわかる
10 コード
11
12
13
14
15
16
17
18 おまけ
19
20
21
22