Skip to Content
Think Stats 第2版 ―プログラマのための統計入門
book

Think Stats 第2版 ―プログラマのための統計入門

by Allen B. Downey, 黒川 利明, 黒川 洋
August 2015
Intermediate to advanced
272 pages
5h 46m
Japanese
O'Reilly Japan, Inc.
Content preview from Think Stats 第2版 ―プログラマのための統計入門
72
5 章 分布をモデル化する
5.6
 乱数の生成
解析分布の
CDF
は、分布関数
p
CDF(x)
に従う乱数を生成するのにも役立ちま
す。
CDF
の逆関数を効率的に計算する方法があるなら、
0
1
の問の一様分布から
p
を選び、そして
x
x
ICDF(p)
として選ぶことにより、適当な分布に従う乱数値
を作れます。
例えば、指数分布の
CDF
は次のようになります。
p
1
e
λ
x
x
について解くと、次になります。
x
=−
log(1
p)/
λ
Python
では次のようになります。
def expovariate(lam):
p=random.random()
x=-math.log(1-p)/lam
return x
expovariate
lam
を取って、母数が
lam
の指数分布からランダムに選ばれた値を
返します。
この実装についての注意が
2
つあります。母数を
lam
にしたのは、
lambda
Python
の予約語だからです。また、
log 0
が未定義なので、注意が必要です。
random.random
の実装は
0
は返しますが
1
は返しません。だから、
1
p
1
を取る
ことはありますが
0
にはなりません。したがって、
log(1-p)
の値は不定になりません。
5.7
 モデルが何の役に立つの?
本章の冒頭で多くの実世界の現象が解析分布でモデル化できると述べました。「そ
れでどうなの
?
」と読者の中には疑問に思う方もいるかもしれません。
モデル一般に言えることですが、解析分布は抽象化、すなわち些末と考えられる詳
細を省きます。例えば、観測された分布には、その標本特有の計測誤差やねじれがあ ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

マスタリングLinuxシェルスクリプト 第2版 ―Linuxコマンド、bashスクリプト、シェルプログラミング実践入門

Mokhtar Ebrahim, Andrew Mallett, 萬谷 暢崇, 原 隆文
マイクロサービスアーキテクチャ 第2版

マイクロサービスアーキテクチャ 第2版

Sam Newman, 佐藤 直生, 木下 哲也
機械学習デザインパターン ―データ準備、モデル構築、MLOpsの実践上の問題と解決

機械学習デザインパターン ―データ準備、モデル構築、MLOpsの実践上の問題と解決

Valliappa Lakshmanan, Sara Robinson, Michael Munn, 鷲崎 弘宜, 竹内 広宜, 名取 直毅, 吉岡 信和

Publisher Resources

ISBN: 9784873117355Other