元のファイル(SVG ファイル、640 × 489 ピクセル、ファイルサイズ: 95キロバイト)

概要

解説 A plot of the probability density 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_pdf(x,a,s):
    y = (a/s) * ((x/s)**(-1-a)) * exp(- (x/s)**(-a) )
    return y
 
x = linspace(0,4,10**5)
 
fig = figure()
ax = fig.add_subplot(111)
ax.plot(x,calc_frechet_pdf(x,1.,1.),label=r'$\alpha=1;$ $s=1$', linewidth=2)
ax.plot(x,calc_frechet_pdf(x,2.,1.),label=r'$\alpha=2;$ $s=1$', linewidth=2)
ax.plot(x,calc_frechet_pdf(x,3.,1.),label=r'$\alpha=3;$ $s=1$', linewidth=2)
ax.plot(x,calc_frechet_pdf(x,1.,2.),label=r'$\alpha=1;$ $s=2$', linewidth=2)
ax.plot(x,calc_frechet_pdf(x,2.,2.),label=r'$\alpha=2;$ $s=2$', linewidth=2)
ax.plot(x,calc_frechet_pdf(x,3.,2.),label=r'$\alpha=3;$ $s=2$', linewidth=2)
ax.grid(True)
ax.minorticks_on()
ax.legend(loc=1)
ax.set_xlim(0,4)
ax.set_ylim(0,1.5)
ax.set_xlabel("x")
ax.set_ylabel("PDF")
fig.savefig("Frechet_pdf.svg",bbox_inches="tight", pad_inches=.15)

ライセンス

この作品の著作権者である私は、この作品を以下のライセンスで提供します。
GNU head この文書は、フリーソフトウェア財団発行のGNUフリー文書利用許諾書 (GNU Free Documentation License) 1.2またはそれ以降のバージョンの規約に基づき、複製や再配布、改変が許可されます。不可変更部分、表紙、背表紙はありません。このライセンスの複製は、GNUフリー文書利用許諾書という章に含まれています。
w:ja:クリエイティブ・コモンズ
表示 継承
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International, 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
あなたは以下の条件に従う場合に限り、自由に
  • 共有 – 本作品を複製、頒布、展示、実演できます。
  • 再構成 – 二次的著作物を作成できます。
あなたの従うべき条件は以下の通りです。
  • 表示 – あなたは適切なクレジットを表示し、ライセンスへのリンクを提供し、変更があったらその旨を示さなければなりません。これらは合理的であればどのような方法で行っても構いませんが、許諾者があなたやあなたの利用行為を支持していると示唆するような方法は除きます。
  • 継承 – もしあなたがこの作品をリミックスしたり、改変したり、加工した場合には、あなたはあなたの貢献部分を元の作品とこれと同一または互換性があるライセンスの下に頒布しなければなりません。
あなたは上記のライセンスから、どれか一つ以上を選択できます。

キャプション

このファイルの内容を1行で記述してください

このファイルに描写されている項目

題材

9 7 2011

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2011年7月9日 (土) 21:162011年7月9日 (土) 21:16時点における版のサムネイル640 × 489 (95キロバイト)Arthena== Summary == {{Information |Description= A plot of the probability density function of the Fréchet distribution. |Source= Self-made using python with numpy and matplotlib. |Date= July 9

以下のページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています: