파일:Normal Distribution PDF.svg

문서 내용이 다른 언어로는 지원되지 않습니다.
위키백과, 우리 모두의 백과사전.

원본 파일(SVG 파일, 실제 크기 720 × 460 픽셀, 파일 크기: 63 KB)

파일 설명

설명
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
 
SVG 파일의 소스 코드를 하나의 실수입니다.
 
이 W3C-무효 chart 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()

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다

이 파일에 묘사된 항목

다음을 묘사함

파일 역사

날짜/시간 링크를 클릭하면 해당 시간의 파일을 볼 수 있습니다.

날짜/시간섬네일크기사용자설명
현재2016년 4월 30일 (토) 01:062016년 4월 30일 (토) 01:06 판의 섬네일720 × 460 (63 KB)RayhemLighten background grid
2009년 9월 23일 (수) 02:192009년 9월 23일 (수) 02:19 판의 섬네일720 × 460 (65 KB)StpashaTrying again, there seems to be a bug with previous upload…
2009년 9월 23일 (수) 02:152009년 9월 23일 (수) 02:15 판의 섬네일720 × 460 (65 KB)StpashaCurves are more distinguishable; numbers correctly rendered in roman style instead of italic
2009년 6월 27일 (토) 23:072009년 6월 27일 (토) 23:07 판의 섬네일720 × 460 (55 KB)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월 6일 (토) 03:222008년 9월 6일 (토) 03:22 판의 섬네일720 × 460 (109 KB)PatríciaRfrom http://tools.wikimedia.pl/~beau/imgs/ (recovering lost file)
2008년 4월 3일 (목) 04:09섬네일 없음 (109 KB)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

다음 문서 3개가 이 파일을 사용하고 있습니다:

이 파일을 사용하고 있는 모든 위키의 문서 목록

다음 위키에서 이 파일을 사용하고 있습니다:

이 파일의 더 많은 사용 내역을 봅니다.

메타데이터