跳至內容

File:Frechet cdf.svg

頁面內容不支援其他語言。
這個檔案來自維基共享資源
維基百科,自由的百科全書
原始檔案 (SVG 檔案,表面大小:633 × 495 像素,檔案大小:68 KB)


摘要

描述 A plot of the cumulative distribution function of the Fréchet distribution.
日期
來源 Self-made using python with numpy and matplotlib.
作者 user:Arthena

Python Code

from matplotlib.pyplot import *
from numpy import linspace, exp

def calc_frechet_cdf(x,a,s):
    y = exp( -(x/s)**(-a))
    return y
 
x = linspace(0.2,5,10**5)
 
fig = figure()
ax = fig.add_subplot(111)
ax.plot(x,calc_frechet_cdf(x,1.,1.),label=r'$\alpha=1;$ $s=1$; $m=0$', linewidth=2)
ax.plot(x,calc_frechet_cdf(x,2.,1.),label=r'$\alpha=2;$ $s=1$; $m=0$', linewidth=2)
ax.plot(x,calc_frechet_cdf(x,3.,1.),label=r'$\alpha=3;$ $s=1$; $m=0$', linewidth=2)
ax.plot(x,calc_frechet_cdf(x,1.,2.),label=r'$\alpha=1;$ $s=2$; $m=0$', linewidth=2)
ax.plot(x,calc_frechet_cdf(x,2.,2.),label=r'$\alpha=2;$ $s=2$; $m=0$', linewidth=2)
ax.plot(x,calc_frechet_cdf(x,3.,2.),label=r'$\alpha=3;$ $s=2$; $m=0$', linewidth=2)
ax.grid(True)
ax.minorticks_on()
ax.legend(loc=4)
ax.set_xlim(0,5)
ax.set_ylim(0,1)
ax.set_xlabel("x")
ax.set_ylabel("CDF")
fig.savefig("Frechet_cdf.svg",bbox_inches="tight", pad_inches=.15)

授權條款

我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
GNU head 已授權您依據自由軟體基金會發行的無固定段落、封面文字和封底文字GNU自由文件授權條款1.2版或任意後續版本,對本檔進行複製、傳播和/或修改。該協議的副本列在GNU自由文件授權條款中。
w:zh:共享創意
姓名標示 相同方式分享
此檔案採用創用 CC 姓名標示─相同方式分享 4.0 國際版3.0 未在地化版2.5 通用版2.0 通用版1.0 通用版授權條款。
您可以自由:
  • 分享 – 複製、發佈和傳播本作品
  • 重新修改 – 創作演繹作品
惟需遵照下列條件:
  • 姓名標示 – 您必須指名出正確的製作者,和提供授權條款的連結,以及表示是否有對內容上做出變更。您可以用任何合理的方式來行動,但不得以任何方式表明授權條款是對您許可或是由您所使用。
  • 相同方式分享 – 若要根據本素材進行再混合、轉換或創作,則必須以與原作相同或相容的授權來發布您的作品。
您可以選擇您需要的授權條款。

說明

添加單行說明來描述出檔案所代表的內容

在此檔案描寫的項目

描繪內容

著作權狀態 繁體中文 (已轉換拼寫)

有著作權 繁體中文 (已轉換拼寫)

檔案歷史

點選日期/時間以檢視該時間的檔案版本。

日期/時間縮⁠圖尺寸用戶備⁠註
目前2011年7月9日 (六) 21:18於 2011年7月9日 (六) 21:18 版本的縮圖633 × 495​(68 KB)Arthena== Summary == {{Information |Description= A plot of the cumulative distribution function of the Fréchet distribution. |Source= Self-made using python with numpy and matplotlib. |Date=

下列2個頁面有用到此檔案:

全域檔案使用狀況

以下其他 wiki 使用了這個檔案: