元のファイル(SVG ファイル、720 × 460 ピクセル、ファイルサイズ: 63キロバイト)

概要

解説
English: A selection of Normal Distribution Probability Density Functions (PDFs). Both the mean, μ, and variance, σ², are varied. The key is given on the graph.
日付
原典 self-made, Mathematica, Inkscape
作者 Inductiveload
許可
(ファイルの再利用)
Public domain この著作物の著作権者である私は、この著作物における権利を放棄しパブリックドメインとします。これは全世界で適用されます。
一部の国では、これが法的に可能ではない場合があります。その場合は、次のように宣言します。
私は、あらゆる人に対して、法により必要とされている条件を除き、如何なる条件も課すことなく、あらゆる目的のためにこの著作物を使用する権利を与えます。
SVG 開発
InfoField
 
このベクター画像のソースコードは 正しくありません。エラーがひとつあります。
 
このW3C-無効 統計図表Rで作成されました。
 
この変倍ベクタ図形統計図表は埋込み文を用いています。
ソースコード
InfoField

R code

Plot[
 {
  PDF[NormalDistribution[1, Sqrt[2]], x],
  PDF[NormalDistribution[2, 1], x],
  PDF[NormalDistribution[3, Sqrt[3]], x],
    },
 {x, -5, 5},
 PlotRange -> All,
 Axes -> False]

Data

#			Normal Distribution PDF
#range
x=seq(-5,5,length=200)
#plot each curve
plot(x,dnorm(x,mean=0,sd=sqrt(.2)),type="l",lwd=2,col="blue",main='Normal Distribution PDF',xlim=c(-5,5),ylim=c(0,1),xlab='X',
ylab='φμ, σ²(X)')
curve(dnorm(x,mean=0,sd=1), add=TRUE,type="l",lwd=2,col="red")
curve(dnorm(x,mean=0,sd=sqrt(5)), add=TRUE,type="l",lwd=2,col="brown")
curve(dnorm(x,mean=-2,sd=sqrt(.5)), add=TRUE,type="l",lwd=2,col="green")

Text

#                    Normal Distribution
import numpy as np
import matplotlib.pyplot as plt 

def make_gauss(N, sig, mu):
    return lambda x: N/(sig * (2*np.pi)**.5) * np.e ** (-(x-mu)**2/(2 * sig**2))

def main():
    ax = plt.figure().add_subplot(1,1,1)
    x = np.arange(-5, 5, 0.01)
    s = np.sqrt([0.2, 1, 5, 0.5])
    m = [0, 0, 0, -2] 
    c = ['b','r','y','g']

    for sig, mu, color in zip(s, m, c): 
        gauss = make_gauss(1, sig, mu)(x)
        ax.plot(x, gauss, color, linewidth=2)

    plt.xlim(-5, 5)
    plt.ylim(0, 1)
    plt.legend(['0.2', '1.0', '5.0', '0.5'], loc='best')
    plt.show()

if __name__ == '__main__':
   main()

キャプション

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

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

題材

2 4 2008

ファイルの履歴

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

日付と時刻サムネイル寸法利用者コメント
現在の版2016年4月29日 (金) 16:062016年4月29日 (金) 16:06時点における版のサムネイル720 × 460 (63キロバイト)RayhemLighten background grid
2009年9月22日 (火) 17:192009年9月22日 (火) 17:19時点における版のサムネイル720 × 460 (65キロバイト)StpashaTrying again, there seems to be a bug with previous upload…
2009年9月22日 (火) 17:152009年9月22日 (火) 17:15時点における版のサムネイル720 × 460 (65キロバイト)StpashaCurves are more distinguishable; numbers correctly rendered in roman style instead of italic
2009年6月27日 (土) 14:072009年6月27日 (土) 14:07時点における版のサムネイル720 × 460 (55キロバイト)Autiwafichier environ 2 fois moins gros. Purgé des définitions inutiles, et avec des plots optimisés au niveau du nombre de points.
2008年9月5日 (金) 18:222008年9月5日 (金) 18:22時点における版のサムネイル720 × 460 (109キロバイト)PatríciaRfrom http://tools.wikimedia.pl/~beau/imgs/ (recovering lost file)
2008年4月2日 (水) 19:09サムネイルなし (109キロバイト)Inductiveload{{Information |Description=A selection of Normal Distribution Probability Density Functions (PDFs). Both the mean, ''μ'', and variance, ''σ²'', are varied. The key is given on the graph. |Source=self-made, Mathematica, Inkscape |Date=02/04/2008 |Author

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

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

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

このファイルのグローバル使用状況を表示する。

メタデータ