SlideShare una empresa de Scribd logo
1 de 27
Descargar para leer sin conexión
第9章
統計モデリング
2021/2/28 CCSS School on Computational Social Science『計算社会科学⼊⾨』
CyberAgent, Inc. All Rights Reserved
⾼野雅典
株式会社サイバーエージェント 秋葉原ラボ
takano_masanori@cyberagent.co.jp
1
⾏動ビッグデータと課題
n⾏動ビッグデータ
• 多くの場合「あるシステムにおいて⼈々が⾃由に⾏動した結果の履歴」を指す
• GPSデータ、検索エンジンの検索クエリ・クリック履歴、ソーシャルネット
ワーキングサービスのコミュニケーション履歴、オンラインゲームのアクショ
ン、ECサイトの閲覧・購⼊履歴
• 観察データの⼀種
n観察データの課題
• 「要因 → 結果」の関係性を知るのが難しい
• 疫学、⽣態学、経済学、⼼理学、社会学などなどの分野で観察データを扱うために分析⼿法
が発展
2
要因と結果の関係が単純な⽐較ではわからない例
n知りたいこと
• ⾃社のニュースサイトが利⽤者のニュース知識に与える効果
n仮説
• ⾃社のニュースサイトの利⽤時間が⻑いほどニュースの知識が多い
n単純な分析
• 利⽤者の「ニュースサイト利⽤時間」が「ニュースの知識」の相関
→ 負の相関
ニュースサイトを利⽤するほど知識が減る?
3
要因と結果の関係が単純な⽐較ではわからない例
nこの分析の問題点
• 「ニュースサイト利⽤時間」と「ニュースの知識」の両⽅に影響を
与える要因を考慮していなかった
• 実は、ニュースサイトを利⽤しやすい⼈の特徴がニュース知識と負
に相関する
• このニュースサイトはあまりニュースに関⼼がない⼈向けのブランディング
をしている(エンタメ要素が強い)メディア
• ニュースに関⼼が強い⼈はあまり使わない
• 「ニュースへの関⼼が強さ」が同じぐらいの⼈同⼠で両者の関係性
を調べる必要がある
4
強
中
弱
ニュースサイトの利⽤時間
関⼼の強さを
考慮しない回帰直線
関⼼の強さを
考慮した回帰直線
ニュース知識
そこで統計モデリングですよ
n「データの⽣成過程」をモデル化し、それをデータに当てはめる
n本発表ではデータ y をデータ x で説明するモデルを扱う
• ⽬的変数 y(データ)は確率分布 P から⽣成されるとして
• データ y を説明できる Pのパラメータθをデータから決める
• θは正規分布であれば平均と分散
• 説明変数 x(データ)と係数β・関数 f からθが作られる
• ⼤抵はβで重み付けして⾜し上げたもの
• θ平均= β1x1 + β2x2 + β3x3 + …
5
確率分布1
nある事象が起こる/起こらない
• 購⼊する/しない、合格する/しない、コインが表/裏
• ベルヌーイ分布
n確率 p のベルヌーイ分布に従う事象を n 回繰り返したとき
• n ⼈にメールを送ったときの返信⼈数 y
• ⼆項分布
6
確率分布2
n 最⼤値が⼤きいカウントデータ
• ⼆項分布で n が⼤きくて p が⼩さいとき
• 5万⼈の会員にダイレクトメールを送ったときの成果 y
• ポアソン分布
• 平均と分散が等しい
• [0, ∞) の整数の分布なのでカウントデータによく使われる
• ⾏動ビッグデータだと⾏動回数を数え上げることが多いのでよく
使う
n ポアソン分布よりも分散が⼤きいとき
• 負の⼆項分布
• ポアソン分布のパラメータλがガンマ分布に従って揺らぐときの
分布
• ポアソン分布の平均 = 分散の制約がきつくてうまく当てはまらな
いことが多いのでよく使う
7
確率分布3
n平均的なデータが最も多く、平均から離れると数が減る分布
• ⾝⻑、テストの点数、観測誤差など
• 正規分布
n他
• 対数正規分布、カテゴリカル分布、多項分布、ベータ分布など
• 現象やデータに合わせて適切に選ぶ
8
分布と説明変数の関係
n 分布Pを選んだら、次にθとx, βの関係性 f を決める
• といっても多くの場合、分布を選んだらほぼ決まる
n 関数 f は線形予測⼦にリンク関数(の逆関数)を通した形
• 線形予測⼦: β1x1 + β2x2 + β3x3 + …
• xの重み付き線形和なのは単に推定・解釈しやすいから
• なんらかの知⾒がある(yはx2に⽐例するなど)場合はそれをモデルに取り込むべき
• リンク関数
• 線形予測⼦の値が(-∞, ∞) なので、θが定義域に収まるように調整する関数
• θ∈(-∞, ∞): リンク関数は何もしない(線形予測⼦の値をそのまま使う)
• 正規分布など
• θ∈(0, 1): logit関数。ロジスティクス関数の逆関数
• ベルヌーイ分布、⼆項分布
• θ∈(0, ∞): log関数。expの逆関数
• ポアソン分布、負の⼆項分布
• 他の関数を使うこともある
9
興味のある要因変数と結果以外の影響
n観察データは関⼼のある y と x 以外にも様々な変数
が存在する
• 最初の例だと ニュースへの関⼼の強さ が y と x の両⽅に
影響を与える変数 z
• 他にも媒介変数 m や共通の結果 j の変数がありうる
• 媒介の効果を知りたいときは m を⼊れる必要があるが、
x の総合的な効果が知りたいときは⼊れない
• 例えば、広告を⾒た頻度 x、商品の購⼊ y、ブランドの印象 m
• 共通の結果の変数 j を⼊れると、本来とは異なった効果が x の効果
として評価されてしまう
nどうしたらいいか?
• 現象やデータを良く観察してパス図を書いて整理する
• 先⾏研究を調査して参考にする
10
べき分布と⽬的変数
n⽬的変数が⼤きく偏っている場合がある
• 友⼈数、リツイート数、商品の販売数、資産、コミュニケーション頻度
はべき分布になる
nべき分布
• 指数分布よりも⼤きい y が発⽣しやすい
• 指数分布: y ~ exp(-γx)
• べき分布: y ~ x-γ
• たいてい 2 ≦γ ≦ 3 になる
• 両対数グラフで直線になる
• 統計分析では扱いが難しい
• 統計学では⾔及されていないことがほとんど
11
統計分析でべき分布が扱いにくい理由
n⽣成メカニズムに起因
• 「富める者はますます富む」(The rich get richer)
• 売れている書籍のほうが⼈々の⽬に触れる機会も多い(より売れる)
• 友達が多いと新たに⼈と出会う機会が多い、RTが多いとより多くの⼈の⽬に触れる、資産
が多いと資産を増やしやすい など
• yt+1 の発⽣確率が yt に⽐例する(Yule-Simon過程)
• y を最も説明するのは y (x によってはあまり説明されない)
12
log y
log p(y)
y
q(y)
y の発⽣確率
y の分布
⽬的変数がべき分布のときの対処(案)
n⽬的変数 y と関係の強い変数 z を統制変数に採⽤する
• 例: ECサイトの書籍の売上 y、説明変数 x は書籍の属性(分野、出版社、価格な
ど)
• 書籍が売れるほど、ランキングや推薦で利⽤者の⽬に触れやすくなり、より売れる
→ べき分布になる
• 利⽤者の⽬に触れた回数 z を統制変数にする
• これは利⽤者が⽬にした1回あたりに、その書籍を購⼊する確率を⾼める属性 x を分析する
ことになる
n増分 ⊿y = yt+1 ‒ yt を⽬的変数にする
• 基本的には yt に⽐例して ⊿y が決まるが、 より⊿y が⼤きくなりやすい属性 x
を分析する
13
実際にやってみる
nソーシャルゲームの⾏動データを使って直接互恵性を分析する
• Masanori Takano, Kazuya Wada, and Ichiro Fukuda, "Reciprocal Altruism-based Cooperation in a Social Network Game",
New Generation Computing, Vol. 34, No. 3, pp. 257-271, 2016.
n直接互恵性
• 後で⾒返りが期待できるならば,即座に⾃分の利益とならなくても,相⼿に対
して協調的に振る舞う
• ⼀⽅で⾒返りが期待できない相⼿には協調的に振る舞わない
nなぜ研究対象? 協調⾏動のパラドックス
• 協調し合えばお互いにハッピー
• でも個⼈としては相⼿だけに協調してもらった
ほうが得
• その結果、協調⾏動は成⽴しない(進化しない)
• でも、⼈間も他の動物も協調する
n直接互恵性は協調⾏動の成⽴を説明する
メカニズムの⼀つ [Nowak2006, Rand2013]
14
⾼利得
低利得
分析対象のゲーム
15
URL: http://vcard.ameba.jp
期間: 2013/3/25〜2013/4/8
イベント: たすけて!マイヒーロー – お花見編 – (レイドタイプのイベント)
対象: 期間中、一度でもイベントに参加(攻撃)した & 5人以上のアクティブメンバーが所属するギルドに所属するプレイヤー
対象ゲームの基本的な仕様
nプレイヤーの⽬的
• ポイントを獲得してランキング上位を⽬指す
nグループ構造
• 1〜50⼈で構成されるギルド(グループ)に所属
• 任意のタイミングで退団・⼊団申請可
• 協⼒しあうとポイント稼ぎが効率化
nライトなコミュニケーション(メッセージング)
• 個別メッセージ送信、⼀⻫メッセージ送信、
ギルド掲⽰板
・30⽂字以下のテキストメッセージ
• システム上の利益はほぼ0、コストは0(チープトーク的)
16
1位: ⽥中(12040pt)
2位: ⼭⽥(11010pt)
3位: 菊池(11005pt)
4位: 斎藤(9015pt)
・・・
協調⾏動の定義
nリーダーゲーム(Snowdrift ゲームの⼀種)的状況に焦点
• ソーシャルゲームでは多様な⾏動で、すべての協調⾏動を分析する
ことは困難
• 特定のリーダーゲーム状況のおける協調⾏動が、そのユーザの協調
⾏動の全体的な傾向と相関すると仮定する
17
協調 裏切り
協調
-, - 1, 3
裏切り
3, 1 0, 0
協調者 get 1 point.
裏切り者 get 3 point.
協調⾏動を定義するために焦点を当てるイベント
18
①クエスト
プレイヤー
⑤通常x1.5の
ポイント獲得
⑥ランキング競争
同じグループメンバー
②レイドボスに遭遇
→ 攻撃
③救援依頼
④救援(攻撃)
1位: ⽥中(12040pt)
2位: ⼭⽥(11010pt)
3位: 菊池(11005pt)
4位: 斎藤(9015pt)
・
・
・
ボスを攻撃してポイントを稼ぎランキング上位を⽬指すイベント
• 与えたダメージに⽐例してイベントポイント獲得
• 攻撃回数は限られる(or 課⾦)ので効率のよいイベントポ
イント稼ぎが重要
協調⾏動を定義するために焦点を当てる状況
19
攻撃する 攻撃しない
攻撃する - 1, 3
攻撃しない 3, 1 0, 0
2⼈でボスを倒している場合を考えると…
他の誰かが攻撃してくれることを待つ
リーダーゲームに似たジレンマを持つ
この状況で攻撃する⾏動を協調的⾏動として、プレイヤーの 協調⾏動 に
ついて調査する
レイドボスのHPが残り少しの場合
攻撃
HP
遭遇したユーザや
救援を依頼された
ギルドメンバー
「攻撃⼒ > 残りHP」なので、
「攻撃⼒ > ダメージ」。そのため攻撃⼒より少
ないイベントポイントを獲得。
調べること
n知りたいこと
• 直接互恵性がソーシャルゲームの中でも働いているか?
• 理論的(進化ゲーム)・実験的(ゲーム理論実験)には⽰されている⼈の形質は、⾃発的に
⾏動している⼈々の相互作⽤において定量的に検証可能か?
n得られるデータ(⾏動ログのデータ)
• 協調⾏動の回数
• 攻撃回数
• などなど
nアプローチ
• プレイヤ j → プレイヤ i の協調⾏動の回数 Cji が i → j の協調⾏動回数Cij に正に
効いていれば、直接互恵性が働いていると⾔える
• ※ 因果関係をより明確にするためには縦断的な分析や実験が適している
20
⽬的変数(協調回数)の分布
21
n協調回数
• べき分布を⽰す
nどう扱う?
• 協調回数と関係の強い変数を統制変数に採⽤するこ
とを考える
• 協調⾏動は i と j が同じ「協調⾏動が可能な場⾯」
に居合わせなげばならない
• したがってプレイヤがランダムに協調するのであれば、Cij
は i と j の攻撃回数 a の積 𝑎!𝑎" に⽐例するはず
• ランダムでない(直接互恵的である)のならば、 𝑎!𝑎" だ
けでは説明できないので他の説明変数が必要になる
• 𝑎!𝑎" を統制変数として採⽤する
• Cijと同様に裾の厚い分布になっている
• 両者はそれなりに相関するが、それだけでは
説明できない
統計モデル
22
分散が⼤きいカウントデータなので負の⼆項分布
リンク関数が log なので統制変数も log j→i の協調⾏動
(この効果が知りたい)
なんやかんや(書籍参照)
パス図
23
2
1
1
結果
24
Cji は Cij を増やす
つまり互恵的な⾏動をしている
ちなみに 𝒂𝒊𝒂𝒋 を使わなかった場合
・Cji や他の変数が過剰に評価されている
・アクティブなほど Cij も Cji も⼤きくなるため
その他 統計モデリング例
n 知りたいこと
• チャンネルを変更しながら視聴する番組を探している(ザッピング)ときに、ニュースの画⾯が⼀瞬〜数
秒間⽬に⼊ることがある
• この偶発的な接触は利⽤者のニュース知識に貢献するのではないか?
n アプローチ
• 利⽤ログ
• 4秒以下の偶発的接触 z やニュース視聴時間 w を計測
• アンケート調査
• 他のメディア(新聞やテレビ、ソーシャルメディアなど)の利⽤頻度 m
• その他諸々の利⽤者の傾向(エンタメ志向など)c
n 統計モデルの課題
• ニュースに興味が全然ない⼈ほど偶発的接触の回数 z が多い
• 興味がないのですぐにチャンネルを変える
→ 「興味の無さ」を利⽤者の傾向 c で統制する
25
!
"
⃗
M. Takano, Y. Ogawa, F. Taka, and S. Morishita,
“Effects of incidental brief exposure to news on news
knowledge while changing channels on Internet television”,
IEEE Access (accepted!).
計算社会科学における統計モデリング
26
観察: 不思議な現象・
パターンの発⾒
理論: 現象を説明可能な
理論の構築
実験: シンプルな環境
で再現・詳細を調査
まとめ
n データが⽣成される過程を踏まえてモデルを作ろう
• データや現象を注意深く観察する
• 先⾏研究の洞察は⾮常に強⼒
• 我々は「⼈が協⼒し合うこと」は知っているが、それのゲーム理論的な考察や進化メカニズムについて独⼒でたど
り着くのは難しい
• 直接互恵性の論⽂は 1971年 [Trivers1971]
• Yule-Simon過程の論⽂は 1925年 [Yule1925]
• 計算社会科学は新しい領域だが、⼈⽂・社会科学には膨⼤な蓄積がある(もちろん⾃然科学にも)
• ほとんどの研究課題には先⾏研究がある
n 関連トピック
• モデル選択(変数選択)
• 情報量基準(AICなど)、正則化
• 因果推論
• パス図を書いたり、線形予測⼦に統制変数を⼊れるのも因果推論のアプローチの1つ
n 参考書籍
27

Más contenido relacionado

La actualidad más candente

「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例
「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例
「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例takehikoihayashi
 
Nagoya.R #12 非線形の相関関係を検出する指標の算出
Nagoya.R #12 非線形の相関関係を検出する指標の算出Nagoya.R #12 非線形の相関関係を検出する指標の算出
Nagoya.R #12 非線形の相関関係を検出する指標の算出Yusaku Kawaguchi
 
心理学におけるベイズ統計の流行を整理する
心理学におけるベイズ統計の流行を整理する心理学におけるベイズ統計の流行を整理する
心理学におけるベイズ統計の流行を整理するHiroshi Shimizu
 
DID, Synthetic Control, CausalImpact
DID, Synthetic Control, CausalImpactDID, Synthetic Control, CausalImpact
DID, Synthetic Control, CausalImpactYusuke Kaneko
 
状態空間モデルの考え方・使い方 - TokyoR #38
状態空間モデルの考え方・使い方 - TokyoR #38状態空間モデルの考え方・使い方 - TokyoR #38
状態空間モデルの考え方・使い方 - TokyoR #38horihorio
 
ベイズモデリングで見る因子分析
ベイズモデリングで見る因子分析ベイズモデリングで見る因子分析
ベイズモデリングで見る因子分析Shushi Namba
 
ベイズ推定の概要@広島ベイズ塾
ベイズ推定の概要@広島ベイズ塾ベイズ推定の概要@広島ベイズ塾
ベイズ推定の概要@広島ベイズ塾Yoshitake Takebayashi
 
ソーシャルデータと計算社会科学
ソーシャルデータと計算社会科学ソーシャルデータと計算社会科学
ソーシャルデータと計算社会科学Tokyo Tech
 
階層ベイズによるワンToワンマーケティング入門
階層ベイズによるワンToワンマーケティング入門階層ベイズによるワンToワンマーケティング入門
階層ベイズによるワンToワンマーケティング入門shima o
 
ベータ分布の謎に迫る
ベータ分布の謎に迫るベータ分布の謎に迫る
ベータ分布の謎に迫るKen'ichi Matsui
 
データサイエンス概論第一=2-1 データ間の距離と類似度
データサイエンス概論第一=2-1 データ間の距離と類似度データサイエンス概論第一=2-1 データ間の距離と類似度
データサイエンス概論第一=2-1 データ間の距離と類似度Seiichi Uchida
 
【DL輪読会】時系列予測 Transfomers の精度向上手法
【DL輪読会】時系列予測 Transfomers の精度向上手法【DL輪読会】時系列予測 Transfomers の精度向上手法
【DL輪読会】時系列予測 Transfomers の精度向上手法Deep Learning JP
 
操作変数法の書き方_田淵貴大
操作変数法の書き方_田淵貴大操作変数法の書き方_田淵貴大
操作変数法の書き方_田淵貴大Takahiro Tabuchi
 
優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案Masanori Kado
 
機械学習の理論と実践
機械学習の理論と実践機械学習の理論と実践
機械学習の理論と実践Preferred Networks
 
木と電話と選挙(causalTree)
木と電話と選挙(causalTree)木と電話と選挙(causalTree)
木と電話と選挙(causalTree)Shota Yasui
 
AHC-Lab M1勉強会 論文の読み方・書き方
AHC-Lab M1勉強会 論文の読み方・書き方AHC-Lab M1勉強会 論文の読み方・書き方
AHC-Lab M1勉強会 論文の読み方・書き方Shinagawa Seitaro
 
生存時間分析数理の基礎
生存時間分析数理の基礎生存時間分析数理の基礎
生存時間分析数理の基礎Koichiro Gibo
 
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展Shiga University, RIKEN
 

La actualidad más candente (20)

「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例
「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例
「生態学における統計的因果推論」という大ネタへの挑戦:その理論的背景と適用事例
 
Nagoya.R #12 非線形の相関関係を検出する指標の算出
Nagoya.R #12 非線形の相関関係を検出する指標の算出Nagoya.R #12 非線形の相関関係を検出する指標の算出
Nagoya.R #12 非線形の相関関係を検出する指標の算出
 
MICの解説
MICの解説MICの解説
MICの解説
 
心理学におけるベイズ統計の流行を整理する
心理学におけるベイズ統計の流行を整理する心理学におけるベイズ統計の流行を整理する
心理学におけるベイズ統計の流行を整理する
 
DID, Synthetic Control, CausalImpact
DID, Synthetic Control, CausalImpactDID, Synthetic Control, CausalImpact
DID, Synthetic Control, CausalImpact
 
状態空間モデルの考え方・使い方 - TokyoR #38
状態空間モデルの考え方・使い方 - TokyoR #38状態空間モデルの考え方・使い方 - TokyoR #38
状態空間モデルの考え方・使い方 - TokyoR #38
 
ベイズモデリングで見る因子分析
ベイズモデリングで見る因子分析ベイズモデリングで見る因子分析
ベイズモデリングで見る因子分析
 
ベイズ推定の概要@広島ベイズ塾
ベイズ推定の概要@広島ベイズ塾ベイズ推定の概要@広島ベイズ塾
ベイズ推定の概要@広島ベイズ塾
 
ソーシャルデータと計算社会科学
ソーシャルデータと計算社会科学ソーシャルデータと計算社会科学
ソーシャルデータと計算社会科学
 
階層ベイズによるワンToワンマーケティング入門
階層ベイズによるワンToワンマーケティング入門階層ベイズによるワンToワンマーケティング入門
階層ベイズによるワンToワンマーケティング入門
 
ベータ分布の謎に迫る
ベータ分布の謎に迫るベータ分布の謎に迫る
ベータ分布の謎に迫る
 
データサイエンス概論第一=2-1 データ間の距離と類似度
データサイエンス概論第一=2-1 データ間の距離と類似度データサイエンス概論第一=2-1 データ間の距離と類似度
データサイエンス概論第一=2-1 データ間の距離と類似度
 
【DL輪読会】時系列予測 Transfomers の精度向上手法
【DL輪読会】時系列予測 Transfomers の精度向上手法【DL輪読会】時系列予測 Transfomers の精度向上手法
【DL輪読会】時系列予測 Transfomers の精度向上手法
 
操作変数法の書き方_田淵貴大
操作変数法の書き方_田淵貴大操作変数法の書き方_田淵貴大
操作変数法の書き方_田淵貴大
 
優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案優れた研究論文の書き方―7つの提案
優れた研究論文の書き方―7つの提案
 
機械学習の理論と実践
機械学習の理論と実践機械学習の理論と実践
機械学習の理論と実践
 
木と電話と選挙(causalTree)
木と電話と選挙(causalTree)木と電話と選挙(causalTree)
木と電話と選挙(causalTree)
 
AHC-Lab M1勉強会 論文の読み方・書き方
AHC-Lab M1勉強会 論文の読み方・書き方AHC-Lab M1勉強会 論文の読み方・書き方
AHC-Lab M1勉強会 論文の読み方・書き方
 
生存時間分析数理の基礎
生存時間分析数理の基礎生存時間分析数理の基礎
生存時間分析数理の基礎
 
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展
構造方程式モデルによる因果推論: 因果構造探索に関する最近の発展
 

Similar a 書籍「計算社会科学入門」第9章 統計モデリング

Prediction - the future of game analytics - white paper
Prediction - the future of game analytics - white paperPrediction - the future of game analytics - white paper
Prediction - the future of game analytics - white paperJune Lee
 
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...Data Driven Innovation
 
2021 12 nyu-the_business_of_disinformation
2021 12 nyu-the_business_of_disinformation2021 12 nyu-the_business_of_disinformation
2021 12 nyu-the_business_of_disinformationSaraJayneTerp
 
2019 June 27 - Big data and data science
2019 June 27 - Big data and data science2019 June 27 - Big data and data science
2019 June 27 - Big data and data scienceFabio Stella
 
Causal networks, learning and inference - Introduction
Causal networks, learning and inference - IntroductionCausal networks, learning and inference - Introduction
Causal networks, learning and inference - IntroductionFabio Stella
 
Script for ICCRTS 2011 Presentation
Script for ICCRTS 2011 PresentationScript for ICCRTS 2011 Presentation
Script for ICCRTS 2011 PresentationBruce Forrester
 
Multimode network based efficient and scalable learning of collective behavior
Multimode network based efficient and scalable learning of collective behaviorMultimode network based efficient and scalable learning of collective behavior
Multimode network based efficient and scalable learning of collective behaviorIAEME Publication
 
Social Networks and Social Simulation of 3D Online Communities
Social Networks and Social Simulation of 3D Online CommunitiesSocial Networks and Social Simulation of 3D Online Communities
Social Networks and Social Simulation of 3D Online Communitiesjimbbq
 
On the Dynamics of Machine Learning Algorithms and Behavioral Game Theory
On the Dynamics of Machine Learning Algorithms and Behavioral Game TheoryOn the Dynamics of Machine Learning Algorithms and Behavioral Game Theory
On the Dynamics of Machine Learning Algorithms and Behavioral Game TheoryRikiya Takahashi
 
Fairness in Machine Learning @Codemotion
Fairness in Machine Learning @CodemotionFairness in Machine Learning @Codemotion
Fairness in Machine Learning @CodemotionAzzurra Ragone
 
Collaboration in Linux Kernel Mailing Lists
Collaboration in Linux Kernel Mailing Lists Collaboration in Linux Kernel Mailing Lists
Collaboration in Linux Kernel Mailing Lists Dawn Foster
 
Socialmatchmaking
SocialmatchmakingSocialmatchmaking
Socialmatchmakingepokh
 
Safeguarding2point0 at NESTA Reboot july 2010
Safeguarding2point0 at NESTA Reboot july 2010Safeguarding2point0 at NESTA Reboot july 2010
Safeguarding2point0 at NESTA Reboot july 2010Dominic Campbell
 
'Drinking from the fire hose? The pitfalls and potential of Big Data'.
'Drinking from the fire hose? The pitfalls and potential of Big Data'.'Drinking from the fire hose? The pitfalls and potential of Big Data'.
'Drinking from the fire hose? The pitfalls and potential of Big Data'.Josh Cowls
 
빅데이터윈윈 컨퍼런스_데이터시각화자료
빅데이터윈윈 컨퍼런스_데이터시각화자료빅데이터윈윈 컨퍼런스_데이터시각화자료
빅데이터윈윈 컨퍼런스_데이터시각화자료ABRC_DATA
 
CIDR 2009: Jeff Heer Keynote
CIDR 2009: Jeff Heer KeynoteCIDR 2009: Jeff Heer Keynote
CIDR 2009: Jeff Heer Keynoteinfoblog
 

Similar a 書籍「計算社会科学入門」第9章 統計モデリング (20)

Empathic Mixed Reality
Empathic Mixed RealityEmpathic Mixed Reality
Empathic Mixed Reality
 
Upick
UpickUpick
Upick
 
Prediction - the future of game analytics - white paper
Prediction - the future of game analytics - white paperPrediction - the future of game analytics - white paper
Prediction - the future of game analytics - white paper
 
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...
Don't blindly trust your ML System, it may change your life (Azzurra Ragone, ...
 
2021 12 nyu-the_business_of_disinformation
2021 12 nyu-the_business_of_disinformation2021 12 nyu-the_business_of_disinformation
2021 12 nyu-the_business_of_disinformation
 
2019 June 27 - Big data and data science
2019 June 27 - Big data and data science2019 June 27 - Big data and data science
2019 June 27 - Big data and data science
 
SMART Seminar: Massively Interacting Systems
SMART Seminar: Massively Interacting SystemsSMART Seminar: Massively Interacting Systems
SMART Seminar: Massively Interacting Systems
 
Causal networks, learning and inference - Introduction
Causal networks, learning and inference - IntroductionCausal networks, learning and inference - Introduction
Causal networks, learning and inference - Introduction
 
Script for ICCRTS 2011 Presentation
Script for ICCRTS 2011 PresentationScript for ICCRTS 2011 Presentation
Script for ICCRTS 2011 Presentation
 
Multimode network based efficient and scalable learning of collective behavior
Multimode network based efficient and scalable learning of collective behaviorMultimode network based efficient and scalable learning of collective behavior
Multimode network based efficient and scalable learning of collective behavior
 
Social Networks and Social Simulation of 3D Online Communities
Social Networks and Social Simulation of 3D Online CommunitiesSocial Networks and Social Simulation of 3D Online Communities
Social Networks and Social Simulation of 3D Online Communities
 
On the Dynamics of Machine Learning Algorithms and Behavioral Game Theory
On the Dynamics of Machine Learning Algorithms and Behavioral Game TheoryOn the Dynamics of Machine Learning Algorithms and Behavioral Game Theory
On the Dynamics of Machine Learning Algorithms and Behavioral Game Theory
 
Fairness in Machine Learning @Codemotion
Fairness in Machine Learning @CodemotionFairness in Machine Learning @Codemotion
Fairness in Machine Learning @Codemotion
 
Collaboration in Linux Kernel Mailing Lists
Collaboration in Linux Kernel Mailing Lists Collaboration in Linux Kernel Mailing Lists
Collaboration in Linux Kernel Mailing Lists
 
Deep Learning 2.0
Deep Learning 2.0Deep Learning 2.0
Deep Learning 2.0
 
Socialmatchmaking
SocialmatchmakingSocialmatchmaking
Socialmatchmaking
 
Safeguarding2point0 at NESTA Reboot july 2010
Safeguarding2point0 at NESTA Reboot july 2010Safeguarding2point0 at NESTA Reboot july 2010
Safeguarding2point0 at NESTA Reboot july 2010
 
'Drinking from the fire hose? The pitfalls and potential of Big Data'.
'Drinking from the fire hose? The pitfalls and potential of Big Data'.'Drinking from the fire hose? The pitfalls and potential of Big Data'.
'Drinking from the fire hose? The pitfalls and potential of Big Data'.
 
빅데이터윈윈 컨퍼런스_데이터시각화자료
빅데이터윈윈 컨퍼런스_데이터시각화자료빅데이터윈윈 컨퍼런스_데이터시각화자료
빅데이터윈윈 컨퍼런스_데이터시각화자료
 
CIDR 2009: Jeff Heer Keynote
CIDR 2009: Jeff Heer KeynoteCIDR 2009: Jeff Heer Keynote
CIDR 2009: Jeff Heer Keynote
 

Más de Masanori Takano

WWWにおける社会科学
WWWにおける社会科学WWWにおける社会科学
WWWにおける社会科学Masanori Takano
 
サイバーエージェントにおける計算社会科学研究
サイバーエージェントにおける計算社会科学研究サイバーエージェントにおける計算社会科学研究
サイバーエージェントにおける計算社会科学研究Masanori Takano
 
Webとメディアと社会的分断 @ WWW論文読み会
Webとメディアと社会的分断 @ WWW論文読み会Webとメディアと社会的分断 @ WWW論文読み会
Webとメディアと社会的分断 @ WWW論文読み会Masanori Takano
 
Analysis of the Changes in Listening Trends of a Music Streaming Service
Analysis of the Changes in Listening Trends of a Music Streaming ServiceAnalysis of the Changes in Listening Trends of a Music Streaming Service
Analysis of the Changes in Listening Trends of a Music Streaming ServiceMasanori Takano
 
WWW論文読み会 発表資料: Computational Health セッション
WWW論文読み会 発表資料: Computational Health セッションWWW論文読み会 発表資料: Computational Health セッション
WWW論文読み会 発表資料: Computational Health セッションMasanori Takano
 
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見ソーシャルビッグデータ・オープンデータによる社会構造変化の発見
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見Masanori Takano
 
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談Masanori Takano
 
論文紹介: Tweetment effects on the tweeted experimentally reducing racist harass...
論文紹介: Tweetment effects on the tweeted  experimentally reducing racist harass...論文紹介: Tweetment effects on the tweeted  experimentally reducing racist harass...
論文紹介: Tweetment effects on the tweeted experimentally reducing racist harass...Masanori Takano
 
サイバーエージェントにおける計算社会科学
サイバーエージェントにおける計算社会科学サイバーエージェントにおける計算社会科学
サイバーエージェントにおける計算社会科学Masanori Takano
 
論文紹介 Explaining the prevalence, scaling and variance of urban phenomena
論文紹介 Explaining the prevalence, scaling and variance of urban phenomena論文紹介 Explaining the prevalence, scaling and variance of urban phenomena
論文紹介 Explaining the prevalence, scaling and variance of urban phenomenaMasanori Takano
 
社会関係の数と親密さのトレードオフが社会構造に与える影響
社会関係の数と親密さのトレードオフが社会構造に与える影響社会関係の数と親密さのトレードオフが社会構造に与える影響
社会関係の数と親密さのトレードオフが社会構造に与える影響Masanori Takano
 
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)Masanori Takano
 
野良ビッグデータへのお誘い
野良ビッグデータへのお誘い野良ビッグデータへのお誘い
野良ビッグデータへのお誘いMasanori Takano
 
Lightweight Interactions for Reciprocal Cooperation in a Social Network Game
Lightweight Interactions for Reciprocal Cooperation in a Social Network GameLightweight Interactions for Reciprocal Cooperation in a Social Network Game
Lightweight Interactions for Reciprocal Cooperation in a Social Network GameMasanori Takano
 
サラリーマンのための計算社会科学
サラリーマンのための計算社会科学サラリーマンのための計算社会科学
サラリーマンのための計算社会科学Masanori Takano
 
社会関係の強さに基づく社会的グルーミング戦略の適応性
社会関係の強さに基づく社会的グルーミング戦略の適応性社会関係の強さに基づく社会的グルーミング戦略の適応性
社会関係の強さに基づく社会的グルーミング戦略の適応性Masanori Takano
 
ソーシャル系Webサービスのデータを用いた社会科学 資料
ソーシャル系Webサービスのデータを用いた社会科学 資料ソーシャル系Webサービスのデータを用いた社会科学 資料
ソーシャル系Webサービスのデータを用いた社会科学 資料Masanori Takano
 
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...Masanori Takano
 
データにまつわるWeb業界の仕事について
データにまつわるWeb業界の仕事についてデータにまつわるWeb業界の仕事について
データにまつわるWeb業界の仕事についてMasanori Takano
 
How Do Newcomers Blend into a Group?: Study on a Social Network Game
How Do Newcomers Blend into a Group?: Study on a Social Network GameHow Do Newcomers Blend into a Group?: Study on a Social Network Game
How Do Newcomers Blend into a Group?: Study on a Social Network GameMasanori Takano
 

Más de Masanori Takano (20)

WWWにおける社会科学
WWWにおける社会科学WWWにおける社会科学
WWWにおける社会科学
 
サイバーエージェントにおける計算社会科学研究
サイバーエージェントにおける計算社会科学研究サイバーエージェントにおける計算社会科学研究
サイバーエージェントにおける計算社会科学研究
 
Webとメディアと社会的分断 @ WWW論文読み会
Webとメディアと社会的分断 @ WWW論文読み会Webとメディアと社会的分断 @ WWW論文読み会
Webとメディアと社会的分断 @ WWW論文読み会
 
Analysis of the Changes in Listening Trends of a Music Streaming Service
Analysis of the Changes in Listening Trends of a Music Streaming ServiceAnalysis of the Changes in Listening Trends of a Music Streaming Service
Analysis of the Changes in Listening Trends of a Music Streaming Service
 
WWW論文読み会 発表資料: Computational Health セッション
WWW論文読み会 発表資料: Computational Health セッションWWW論文読み会 発表資料: Computational Health セッション
WWW論文読み会 発表資料: Computational Health セッション
 
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見ソーシャルビッグデータ・オープンデータによる社会構造変化の発見
ソーシャルビッグデータ・オープンデータによる社会構造変化の発見
 
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談
仮想社会におけるソーシャルサポート効果の検証: ピグパーティにおけるいじめ相談
 
論文紹介: Tweetment effects on the tweeted experimentally reducing racist harass...
論文紹介: Tweetment effects on the tweeted  experimentally reducing racist harass...論文紹介: Tweetment effects on the tweeted  experimentally reducing racist harass...
論文紹介: Tweetment effects on the tweeted experimentally reducing racist harass...
 
サイバーエージェントにおける計算社会科学
サイバーエージェントにおける計算社会科学サイバーエージェントにおける計算社会科学
サイバーエージェントにおける計算社会科学
 
論文紹介 Explaining the prevalence, scaling and variance of urban phenomena
論文紹介 Explaining the prevalence, scaling and variance of urban phenomena論文紹介 Explaining the prevalence, scaling and variance of urban phenomena
論文紹介 Explaining the prevalence, scaling and variance of urban phenomena
 
社会関係の数と親密さのトレードオフが社会構造に与える影響
社会関係の数と親密さのトレードオフが社会構造に与える影響社会関係の数と親密さのトレードオフが社会構造に与える影響
社会関係の数と親密さのトレードオフが社会構造に与える影響
 
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)
ヒトと社会を理解するための計算社会科学(社会情報システム学シンポジウム 基調講演資料)
 
野良ビッグデータへのお誘い
野良ビッグデータへのお誘い野良ビッグデータへのお誘い
野良ビッグデータへのお誘い
 
Lightweight Interactions for Reciprocal Cooperation in a Social Network Game
Lightweight Interactions for Reciprocal Cooperation in a Social Network GameLightweight Interactions for Reciprocal Cooperation in a Social Network Game
Lightweight Interactions for Reciprocal Cooperation in a Social Network Game
 
サラリーマンのための計算社会科学
サラリーマンのための計算社会科学サラリーマンのための計算社会科学
サラリーマンのための計算社会科学
 
社会関係の強さに基づく社会的グルーミング戦略の適応性
社会関係の強さに基づく社会的グルーミング戦略の適応性社会関係の強さに基づく社会的グルーミング戦略の適応性
社会関係の強さに基づく社会的グルーミング戦略の適応性
 
ソーシャル系Webサービスのデータを用いた社会科学 資料
ソーシャル系Webサービスのデータを用いた社会科学 資料ソーシャル系Webサービスのデータを用いた社会科学 資料
ソーシャル系Webサービスのデータを用いた社会科学 資料
 
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...
論文紹介: What’s in a like- attitudes and behaviors around receiving likes on fac...
 
データにまつわるWeb業界の仕事について
データにまつわるWeb業界の仕事についてデータにまつわるWeb業界の仕事について
データにまつわるWeb業界の仕事について
 
How Do Newcomers Blend into a Group?: Study on a Social Network Game
How Do Newcomers Blend into a Group?: Study on a Social Network GameHow Do Newcomers Blend into a Group?: Study on a Social Network Game
How Do Newcomers Blend into a Group?: Study on a Social Network Game
 

Último

Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )aarthirajkumar25
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsSérgio Sacani
 
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |aasikanpl
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsAArockiyaNisha
 
Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Patrick Diehl
 
Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Nistarini College, Purulia (W.B) India
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxUmerFayaz5
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfnehabiju2046
 
Formation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disksFormation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disksSérgio Sacani
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSarthak Sekhar Mondal
 
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.aasikanpl
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...anilsa9823
 
GFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxGFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxAleenaTreesaSaji
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bSérgio Sacani
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...Sérgio Sacani
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Lokesh Kothari
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoSérgio Sacani
 
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...jana861314
 

Último (20)

Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )Recombination DNA Technology (Nucleic Acid Hybridization )
Recombination DNA Technology (Nucleic Acid Hybridization )
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
 
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based Nanomaterials
 
Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?Is RISC-V ready for HPC workload? Maybe?
Is RISC-V ready for HPC workload? Maybe?
 
Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...Bentham & Hooker's Classification. along with the merits and demerits of the ...
Bentham & Hooker's Classification. along with the merits and demerits of the ...
 
CELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdfCELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdf
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptx
 
A relative description on Sonoporation.pdf
A relative description on Sonoporation.pdfA relative description on Sonoporation.pdf
A relative description on Sonoporation.pdf
 
Formation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disksFormation of low mass protostars and their circumstellar disks
Formation of low mass protostars and their circumstellar disks
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
 
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.
Call Girls in Munirka Delhi 💯Call Us 🔝9953322196🔝 💯Escort.
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
 
GFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxGFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptx
 
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43bNightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
Nightside clouds and disequilibrium chemistry on the hot Jupiter WASP-43b
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
 
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
Labelling Requirements and Label Claims for Dietary Supplements and Recommend...
 
The Philosophy of Science
The Philosophy of ScienceThe Philosophy of Science
The Philosophy of Science
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on Io
 
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...
Traditional Agroforestry System in India- Shifting Cultivation, Taungya, Home...
 

書籍「計算社会科学入門」第9章 統計モデリング