File:Normal Distribution PDF.svg

Mula Wikimedia Commons
Pumunta sa nabigasyon Pumunta sa paghahanap

Orihinal na file(SVG na file, nominal na 720 × 460 (na) pixel, laki: 63 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Buod[baguhin]

Paglalarawan
English: A selection of Normal Distribution Probability Density Functions (PDFs). Both the mean, μ, and variance, σ², are varied. The key is given on the graph.
Petsa
Pinanggalingan self-made, Mathematica, Inkscape
May-akda Inductiveload
Permiso
(Muling paggamit sa file)
Public domain Ako, ang may tangan ng karapatang-ari ng akdang ito, ay pinakakawalan ang akdang ito sa nasasakupan ng madla. Magagamit ito sa buong mundo.
Maaaring hindi ito posibleng legal sa ilang mga bansa; kung ganito:
Ibinibigay ko sa sinuman ang karapatang gamitin ang akdang ito para sa anumang layunin, na walang mga kundisyon, maliban na lang kung ang ganyang mga kundisyon ay kailangan ng batas.
SVG genesis
InfoField
 
Ang source code ng itong SVG ay hindi wasto dahil sa isang pagkamali.
 
This W3C-invalid chart was created with R.
 
This SVG chart uses embedded text.
Source code
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()

Nakaraan ng file

Pindutin ang isang petsa/oras para makita ang file noong puntong yon.

Petsa/OrasThumbnailSukatTagagamitKomento
ngayon16:06, 29 Abril 2016Thumbnail para sa bersyon noong 16:06, 29 Abril 2016720 × 460 (63 KB)Rayhem (usapan | ambag)Lighten background grid
17:19, 22 Setyembre 2009Thumbnail para sa bersyon noong 17:19, 22 Setyembre 2009720 × 460 (65 KB)Stpasha (usapan | ambag)Trying again, there seems to be a bug with previous upload…
17:15, 22 Setyembre 2009Thumbnail para sa bersyon noong 17:15, 22 Setyembre 2009720 × 460 (65 KB)Stpasha (usapan | ambag)Curves are more distinguishable; numbers correctly rendered in roman style instead of italic
14:07, 27 Hunyo 2009Thumbnail para sa bersyon noong 14:07, 27 Hunyo 2009720 × 460 (55 KB)Autiwa (usapan | ambag)fichier environ 2 fois moins gros. Purgé des définitions inutiles, et avec des plots optimisés au niveau du nombre de points.
18:22, 5 Setyembre 2008Thumbnail para sa bersyon noong 18:22, 5 Setyembre 2008720 × 460 (109 KB)PatríciaR (usapan | ambag)from http://tools.wikimedia.pl/~beau/imgs/ (recovering lost file)
19:09, 2 Abril 2008Walang thumbnail (109 KB)Inductiveload (usapan | ambag){{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

Pandaigdigang paggamit sa file

Ginagamit ng mga sumusunod na wiki ang file na ito:

Tingnan ang karagdagang pandaigdigang paggamit sa file na ito.

Metadata