Commons is a freely licensed media file repository. You can help.
Any autoconfirmed user can overwrite this file from the same source. Please ensure that overwrites comply with the guideline.
Summary
DescriptionNormal Distribution PDF.svg
English: A selection of Normal Distribution Probability Density Functions (PDFs). Both the mean, μ, and variance, σ², are varied. The key is given on the graph.
Date
Source
Own work (Original text: self-made, Mathematica, Inkscape)
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.
# Normal Distribution - Probability Density Function (PDF)#rangex=seq(-5,5,length=200)#plot each curveplot(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")