跳转到内容

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 已授权您依据自由软件基金会发行的无固定段落及封面封底文字(Invariant Sections, Front-Cover Texts, and Back-Cover Texts)的GNU自由文件许可协议1.2版或任意后续版本的条款,复制、传播和/或修改本文件。该协议的副本请见“GNU Free Documentation License”。
w:zh:知识共享
署名 相同方式共享
本文件采用知识共享署名-相同方式共享4.0 国际3.0 未本地化版本2.5 通用2.0 通用1.0 通用许可协议授权。
您可以自由地:
  • 共享 – 复制、发行并传播本作品
  • 修改 – 改编作品
惟须遵守下列条件:
  • 署名 – 您必须对作品进行署名,提供授权条款的链接,并说明是否对原始内容进行了更改。您可以用任何合理的方式来署名,但不得以任何方式表明许可人认可您或您的使用。
  • 相同方式共享 – 如果您再混合、转换或者基于本作品进行创作,您必须以与原先许可协议相同或相兼容的许可协议分发您贡献的作品。
您可以选择您需要的许可协议。

说明

添加一行文字以描述该文件所表现的内容

此文件中描述的项目

描绘内容

文件历史

点击某个日期/时间查看对应时刻的文件。

日期/时间缩⁠略⁠图大小用户备注
当前2011年7月9日 (六) 21:182011年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使用此文件: