Dosiero:Normal Distribution PDF.svg

El testwiki
Salti al navigilo Salti al serĉilo
Fonta dosiero (SVG-dosiero, 720 × 460 rastrumeroj, grandeco de dosiero: 61 KB)

Ĉi tiu dosiero estas de Vikimedia Komunejo kaj estas uzebla de aliaj projektoj. Jen la priskribo en ties dosier-priskriba paĝo.

Any autoconfirmed user can overwrite this file from the same source. Please ensure that overwrites comply with the guideline.

Resumo

Priskribo
English: A selection of Normal Distribution Probability Density Functions (PDFs). Both the mean, μ, and variance, σ², are varied. The key is given on the graph.
Dato
Fonto Propra verko (Originala teksto: self-made, Mathematica, Inkscape )
Aŭtoro Inductiveload
Permeso
(Reuzo de la dosiero)
Public domain Mi, la posedanto de la aŭtorrajto por ĉi tiu verko, liberigas ĝin tutmonde kiel publikan havaĵon.
En iuj landoj tio povas esti laŭleĝe neebla; en tiu okazo:
Mi rajtigas ĉiun ajn uzi ĉi tiun verkon por ajna celo, sen iuj ajn kondiĉoj, krom se tiuj kondiĉoj estas postulataj per leĝo.
SVG genesis
InfoField
 The SVG code is valid.
 Ĉi tiu dosiero estas kreita per Mathematica.
 This SVG chart uses embedded text.

Mathematica 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]

R Language Code

# Normal Distribution - Probability Density Function (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")

Python Code

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()

Titoloj

Donu unulinian priskribon de la enhavo de ĉi tiu dosiero

Eroj prezentitaj en ĉi tiu dosiero

montras

64 852 bajto

460 rastrumero

720 rastrumero

image/svg+xml

b99eb650f05d6365525532a7cbc8dea005fcf187

Dosiera historio

Klaku daton/tempon por vidi la dosieron kia ĝi aspektis tiam.

Dato/tempoBildetoDimensiojUzantoKomento
nuna00:40, 28 dec. 2024Bildeto por versio ekde 00:40, 28 dec. 2024720 × 460 (61 KB)wikimediacommons>TheBooker66Minified the file a bit by removing unnecessary elements and fixed svg isues.

La jena paĝo ligas al ĉi tiu dosiero: