2017年9月30日土曜日

学習環境

Head First Statistics (Dawn Griffiths (著)、黒川 利明 (翻訳)、木下 哲也 (翻訳)、黒川 洋 (翻訳)、黒川 めぐみ (翻訳)、オライリージャパン)の7章(幾何分布、二項分布、ポアソン分布 - いろいろな離散確率分布)、自分で考えてみよう(p. 313)を取り組んでみる。

自分で考えてみよう(p. 313)


  1. 3.4 + 2.3 = 5.7

    P(X + Y) ~ Po(5.7)


  2. P( X+Y=0 ) = e 5.7 · 5.7 0 0! = e 5.7

コード(Emacs)

HTML5

<pre id="output0"></pre>

<button id="run">run</button>
<button id="clear0">clear</button>

<script src="sample9.js"></script>    

JavaScript

let pre0 = document.querySelector('#output0'),
    btn0 = document.querySelector('#run'),
    btn1 = document.querySelector('#clear0'),
    p = (x) => pre0.textContent += x,
    range = (start, end, step=1) => {
        let res = [];
        for (let i = start; i < end; i += step) {
            res.push(i);
        }
        return res;
    };

let output = () => {
    p(Math.exp(-5.7));
};

btn0.onclick = output;
btn1.onclick = () => pre0.textContent = '';
output();
















						

0 コメント:

コメントを投稿