ಮೂಲ ಕಡತ(SVG ಫೈಲು, ಸುಮಾರಾಗಿ ೭೨೦ × ೪೬೦ ಚಿತ್ರಬಿಂದುಗಳು, ಫೈಲಿನ ಗಾತ್ರ: ೬೩ 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 I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
SVG genesis
InfoField
 
The source code of this SVG is invalid due to an error.
 
This W3C-invalid chart was created with R.
 
This SVG chart uses embedded text.
ಆಕರ ಸಂಕೇತ
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()

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts ಇಂಗ್ಲಿಷ್

೨ ಏಪ್ರಿಲ್ 2008

ಕಡತದ ಇತಿಹಾಸ

ದಿನ/ಕಾಲ ಒತ್ತಿದರೆ ಆ ಸಮಯದಲ್ಲಿ ಈ ಕಡತದ ವಸ್ತುಸ್ಥಿತಿ ತೋರುತ್ತದೆ.

ದಿನ/ಕಾಲಕಿರುನೋಟಆಯಾಮಗಳುಬಳಕೆದಾರಟಿಪ್ಪಣಿ
ಪ್ರಸಕ್ತ೨೧:೩೬, ೨೯ ಏಪ್ರಿಲ್ ೨೦೧೬೨೧:೩೬, ೨೯ ಏಪ್ರಿಲ್ ೨೦೧೬ ವರೆಗಿನ ಆವೃತ್ತಿಯ ಕಿರುನೋಟ೭೨೦ × ೪೬೦ (೬೩ KB)RayhemLighten background grid
೨೨:೪೯, ೨೨ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೯೨೨:೪೯, ೨೨ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೯ ವರೆಗಿನ ಆವೃತ್ತಿಯ ಕಿರುನೋಟ೭೨೦ × ೪೬೦ (೬೫ KB)StpashaTrying again, there seems to be a bug with previous upload…
೨೨:೪೫, ೨೨ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೯೨೨:೪೫, ೨೨ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೯ ವರೆಗಿನ ಆವೃತ್ತಿಯ ಕಿರುನೋಟ೭೨೦ × ೪೬೦ (೬೫ KB)StpashaCurves are more distinguishable; numbers correctly rendered in roman style instead of italic
೧೯:೩೭, ೨೭ ಜೂನ್ ೨೦೦೯೧೯:೩೭, ೨೭ ಜೂನ್ ೨೦೦೯ ವರೆಗಿನ ಆವೃತ್ತಿಯ ಕಿರುನೋಟ೭೨೦ × ೪೬೦ (೫೫ KB)Autiwafichier environ 2 fois moins gros. Purgé des définitions inutiles, et avec des plots optimisés au niveau du nombre de points.
೨೩:೫೨, ೫ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೮೨೩:೫೨, ೫ ಸೆಪ್ಟೆಂಬರ್ ೨೦೦೮ ವರೆಗಿನ ಆವೃತ್ತಿಯ ಕಿರುನೋಟ೭೨೦ × ೪೬೦ (೧೦೯ KB)PatríciaRfrom http://tools.wikimedia.pl/~beau/imgs/ (recovering lost file)
೦೦:೩೯, ೩ ಏಪ್ರಿಲ್ ೨೦೦೮ಕಿರುನೋಟ ಇಲ್ಲ (೧೦೯ 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

ಈ ಕೆಳಗಿನ 2 ಪುಟಗಳು ಈ ಚಿತ್ರಕ್ಕೆ ಸಂಪರ್ಕ ಹೊಂದಿವೆ:

ಜಾಗತಿಕ ಕಡತ ಉಪಯೋಗ

ಈ ಕಡತವನ್ನು ಕೆಳಗಿನ ಬೇರೆ ವಿಕಿಗಳೂ ಉಪಯೋಗಿಸುತ್ತಿವೆ:

ಈ ಫೈಲ್‌ನ ಹೆಚ್ಚು ಜಾಗತಿಕ ಬಳಕೆಯನ್ನು ವೀಕ್ಷಿಸಿ.

ಮೇಲ್ದರ್ಜೆ ಮಾಹಿತಿ

"https://kn.wikipedia.org/wiki/ಚಿತ್ರ:Normal_Distribution_PDF.svg" ಇಂದ ಪಡೆಯಲ್ಪಟ್ಟಿದೆ