pdf
py
https://www.dropbox.com/s/36h8w2tpwas97k2/ryBinPois.py?dl=0https://www.dropbox.com/s/zc4028mgpaxw3nj/ryBinomialDist.py?dl=0
# 在此,我要向大家挑戰一下,
# 請在 2 周以內 (before 2015/04/24),
# 寫出 計算出 課本 p. 355 ~ p. 360, p.365~p366
# 有關 Binomial 和 Poisson
# 再加上 下周要講的 常態(Normal)分佈
# 的
# 累積機率分佈表 (Cumulative distribution)。
#
# 請在 2 周以內 (before 2015/04/24),
# 寫出 計算出 課本 p. 355 ~ p. 360, p.365~p366
# 有關 Binomial 和 Poisson
# 再加上 下周要講的 常態(Normal)分佈
# 的
# 累積機率分佈表 (Cumulative distribution)。
#
Binomial distribution
(French pronunciation [pwasɔ̃])
--------
as the number of trials goes to infinity
while the product np remains fixed.
Therefore the Poisson distribution with parameter λ = np
can be used as an approximation to B(n, p) of the binomial distribution
if n is sufficiently large and p is sufficiently small.
According to two rules of thumb,
this approximation is good
if n ≥ 20 and p ≤ 0.05,
or if n ≥ 100 and np ≤ 10.
--------
Poisson 分布
by曹亮吉
二項分布是離散型機率模型中最有名的一個,
其次是 Poisson 分布,它可以看成為二項分布的一種極限情形。
通常只要 n 很大,p 很小, 不大不小而且是個已知定數,
Poisson 分布就可以代替二項分布了。
理論推導如下:
一般,若用列表方式,
則 二項分布 b(x;n,p) 要兼顧三個變數 x, n, p,
而 Poisson 只要兩個:x, λ,所以較為方便。
----------------------------------------
Binomial 和 Poisson in Python
by Renyuan
----------------------------------------
Poisson 分布
by曹亮吉
二項分布是離散型機率模型中最有名的一個,
其次是 Poisson 分布,它可以看成為二項分布的一種極限情形。
通常只要 n 很大,p 很小, 不大不小而且是個已知定數,
Poisson 分布就可以代替二項分布了。
理論推導如下:
一般,若用列表方式,
則 二項分布 b(x;n,p) 要兼顧三個變數 x, n, p,
而 Poisson 只要兩個:x, λ,所以較為方便。
----------------------------------------
Binomial 和 Poisson in Python
by Renyuan
----------------------------------------
我是 Renyuan, 學號 A0123456789
回覆刪除作業在此,請欣賞:(賞味期限1周)
https://gist.github.com/renyuanL/dee0f22eb9d03c6128bb
二項分布 完成,
完整程式碼給你參考。
但 參考歸參考,
你仍得自行撰寫、
上傳GitHub。
巴松分布
及 常態分布
有待同學自行完成囉!
我是 蘇永恩 , 學號 B0229043
回覆刪除作業在此,請欣賞:
https://gist.github.com/Auroral/3cf253a30cb5bfb216b7
搶頭香,Very Good。
刪除高斯分佈的部分有點慢,大概是
Fz[i]=integrate(f,(x,-oo,積分到))
用 sympy 當場積分的關係。
很棒,懂得用 sympy 了,比 numpy 還高竿。
因為那個時候要用積分就去google,網路上好像比較多用sympy
刪除積分比較慢我還想不到方法解決@@
謝謝老師
我是 洪培元 , 學號 B0229041
回覆刪除作業在此,請欣賞:
https://gist.github.com/anonymous/c9923d494428b3b233eb
程式寫的很好,很棒。
刪除可以練習再加些註解。
像是:
刪除'''
BinomialDistribution.py
本程式可以做出 二項分佈之累積機率表,
並以適當的格式列印出來。
作者: XXX
'''
def CumulativeBinomialDistribution(start=5, stop=21):
'''
做出二項分佈(n,p)之累積機率字典 BINOM,然後回傳出來。
其中, n 從 start 到 stop,可改變,分別預設為5, 21。
p= [ 0.1, ..., 0.9] 則固定於本函數之中。
'''
我是 鍾欣庭, 學號 B0229018
回覆刪除作業在此,請欣賞
https://gist.github.com/chungxt/6622c9783a1e69ec579f
Very Good 喔。
刪除我發現你在 b0229018_SND.py 中
import numpy as np
很不錯!
代表你「三合一」已經安裝得起來,
numpy 中有很多寶貝,值得學一學,
特別是在訊號與系統、線性代數、工程數學等,
都有大用途,加油。
不過,在你的這支程式中,
np 似乎只用在
for z1 in np.arange(-3.4,0.1,0.1):
這行似乎改成
z1= -3.4
while z1 <=0:
........
........
.... z1 += .1
也可以,如此一來,就不須 np 了。
參考一下。
對了,提醒一下
刪除也順便練習一下
再多加些註解。
不好意思由於我的github帳戶莫名其妙變得連我都無法存取,所以我就將連結以dropbox的方式貼在這裡囉
刪除二項式
https://www.dropbox.com/s/e0hzumctka8fmu5/b0229018_BCD.py?dl=0
巴松
https://www.dropbox.com/s/umbx4697fhl32td/b0229018_PDF.py?dl=0
高斯標準常態
https://www.dropbox.com/s/jt20cnsvy7hlhtf/b0229018_SND.py?dl=0
我是李亭葦 ,學號:B0229046
回覆刪除作業在此,請欣賞
https://gist.github.com/amy4li/f280b4836d97633af273
考慮一下存檔時加個附檔名 .py
刪除這樣在 github 中也會有語法顏色。
import scipy.stats #有安裝成功
很好!
把其中的文件說明讀清楚,
很多事情就可以事半功倍了。
下半學期的統計課程還有很多東西可以在 scipy.stats 看到。
好~謝謝老師 :D 我下次會加上.py的~
刪除我是黃宇薇 ,學號:B0229053
回覆刪除作業在此,請欣賞
https://gist.github.com/machia04541333/99a2034cf836e59dfb58
Good,
刪除你的 comment 很豐富,很棒。
你發現了
"""
關於for迴圈的注意事項~~~~~~
我發現for迴圈跟裡面的字行 一定要對齊 不可以自己亂按tab
不然會有error
(上網查還發現若有些行又tab有些按空白鍵也會出現error)
"""
還自己發現解答,並紀錄於程式中,滿好的。
我是李育綾 ,學號:B0229014
回覆刪除作業在此,請欣賞
https://gist.github.com/smallcoscat/dd4ac6a74475c5d61955
OK 喔。
刪除我是林奕伶,學號:B0229015
回覆刪除作業在此,請欣賞
https://github.com/yiling654183lin/Probability-and-Statistics---assignment/blob/master/hw2.py
OK 喔。
刪除可以再多寫一些註解。
我是張倚豪,學號:B0229056
回覆刪除作業在此,請欣賞
https://gist.github.com/celebrate741/9f1286cbf083c8074cf6#file-poisson-py
B0229052 吳承憲
回覆刪除https://gist.github.com/xt830919/3b76f5c5b99dfaedd6f0
def P(λs,x):
刪除其中 λs 2個字母,像是2個參數乘起來的樣子,
對我來說可讀性較差,建議直接用 a 就好。
程式碼貼在 github 時建議加上副檔名 .py
才會有語法高亮。
我是陳偉翔 ,學號:B0229058
回覆刪除作業在此,請欣賞
https://gist.github.com/sandy111271/5caefd5017e0dfee55a4
OK
刪除陳冠彰,B0229035
回覆刪除https://gist.github.com/brett90063/5a5a812f7bbc7512bcdf
e = 2.71828182845904523536028747135266249775724709369995957496696762772407663035354759457138217852516642742746
刪除有必要弄著麼長嗎?
我是李孟紘 ,學號:B0229028
回覆刪除作業在此,請欣賞:
https://gist.github.com/kingknight0921/574261027ce38dccd65b
程式碼貼在 github 時建議加上副檔名 .py
刪除才會有語法高亮。
好的~~謝謝老師提醒
刪除我是許文瑄,學號:B0229057
回覆刪除作業在此,請欣賞:
https://gist.github.com/anonymous/857ee63cb43444031f99
作者已經移除這則留言。
回覆刪除我是陳志榮,學號:B0229030
回覆刪除作業在此,請欣賞:
https://gist.github.com/JLDDER/bb424fd9ee0a42e7f1a4
我是張峻瑋,學號:B0229021
回覆刪除作業在此,請欣賞:
https://gist.github.com/xuit96lo/d9479c9a2ccb1cb79245
我是張傑夫,學號:B0229039
回覆刪除作業在此,請欣賞:
https://gist.github.com/47f15ef1923d6db4d338.git
更改連結 https://gist.github.com/ChiehFu/47f15ef1923d6db4d338
刪除我是劉浩澤,學號:B0229001
回覆刪除作業在此,請欣賞:
https://gist.github.com/liuhaoze/5716d22f38cb5d0f1a2c
我是洪裕凱,學號:B0229004
回覆刪除作業在此,請欣賞:https://gist.github.com/einkv/2865515fdf221d622584
我是郭明彥,學號:B0229007
回覆刪除作業在此,請欣賞:
https://gist.github.com/B0229007/aa6d3db6da9f922a8a8b
我是王奕翔,學號:B0229049
回覆刪除作業在此,請欣賞:
https://gist.github.com/tommy90191/beb0bf636b04e3576fc3
目前此帳號被視為機器人帳號
刪除如果無法顯示請老師另外留言
@@如果無法顯示再另創帳號
作者已經移除這則留言。
刪除目前先用dropbox頂替@@
刪除二項分布
https://www.dropbox.com/s/xevhmdgbz4xj3vm/%E4%BA%8C%E9%A0%85%E5%88%86%E5%B8%83.py?dl=0
巴松分布
https://www.dropbox.com/s/hyqcnuk8zijiigz/%E5%B7%B4%E6%9D%BE%E5%88%86%E5%B8%83.py?dl=0
常態分布
https://www.dropbox.com/s/mv528z0bh8icjzu/%E5%B8%B8%E6%85%8B%E5%88%86%E5%B8%83.py?dl=0
我是王孝然,學號:B0229013
回覆刪除作業在此,請欣賞:
https://gist.github.com/roger35972134/dba75a5ff4af74c119ef
我是劉昌翰,學號B0229005
回覆刪除作業在此,請欣賞:
https://gist.github.com/B0229005/638907548fd0971eb6dd
作者已經移除這則留言。
回覆刪除我是林怡君,學號B0229025
回覆刪除作業在此,請欣賞:
https://gist.github.com/anonymous/d829fb0490b7843030f6
我是凌勝己,學號B0229034
回覆刪除作業在此,請欣賞:
https://gist.github.com/anonymous/1fa6e2de91a71ea48585
我是彭宇暄,學號B0229011
回覆刪除作業在此,請欣賞:
https://gist.github.com/Sero8139/0c9cc4cb1b2e5b61b3e3
作者已經移除這則留言。
回覆刪除我是黃聖鈞,學號B0229063
刪除作業在此,請欣賞:https://gist.github.com/Doscar0906/35376b22789f44e14e04
我是許世賢,學號B0229003
回覆刪除作業在此,請欣賞:
https://gist.github.com/skate60218/34d96ee685e8aa645ea3
我是戴君霖 學號B0229036
回覆刪除作業在此 請欣賞:
https://gist.github.com/kenny29835/fabe42d3f5210c312f7b
我是 吳冠億 學號B0229019
回覆刪除作業在此 請欣賞:
https://gist.github.com/WGYi/7c4afcb94315a2a677bc
我是 許庭毓 學號B0229020
回覆刪除作業在此 請欣賞:
https://gist.github.com/B0229020/c6acc5331b08d88055af
我是 王品盛 學號B0229040
回覆刪除作業在此 請欣賞:
https://gist.github.com/z355334/eb0748be4ac6d51de5e5
我是 王宥憲 學號B0229029
回覆刪除作業在此 請欣賞:
https://gist.github.com/kf200660306/2872e2c4cf564d578bd6
我是 王宥憲 學號B0229029
回覆刪除作業在此 請欣賞:
https://gist.github.com/kf200660306/2872e2c4cf564d578bd6