קובץ:Normal Distribution PDF.svg

תוכן הדף אינו נתמך בשפות אחרות.
מתוך ויקיפדיה, האנציקלופדיה החופשית

לקובץ המקורי(קובץ SVG, הגודל המקורי: 720 × 460 פיקסלים, גודל הקובץ: 63 ק"ב)

ויקישיתוף זהו קובץ שמקורו במיזם ויקישיתוף. תיאורו בדף תיאור הקובץ המקורי (בעברית) מוצג למטה.

תקציר

תיאור
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 זה הוא לא תקין בגלל שגיאה.
 
R עם‎‎ נוצרה ה W3C-לא תקין גרפיקה וקטורית
 
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()

כיתובים

נא להוסיף משפט שמסביר מה הקובץ מייצג

פריטים שמוצגים בקובץ הזה

מוצג

היסטוריית הקובץ

ניתן ללחוץ על תאריך/שעה כדי לראות את הקובץ כפי שנראה באותו זמן.

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית19:06, 29 באפריל 2016תמונה ממוזערת לגרסה מ־19:06, 29 באפריל 2016‪460 × 720‬ (63 ק"ב)RayhemLighten background grid
20:19, 22 בספטמבר 2009תמונה ממוזערת לגרסה מ־20:19, 22 בספטמבר 2009‪460 × 720‬ (65 ק"ב)StpashaTrying again, there seems to be a bug with previous upload…
20:15, 22 בספטמבר 2009תמונה ממוזערת לגרסה מ־20:15, 22 בספטמבר 2009‪460 × 720‬ (65 ק"ב)StpashaCurves are more distinguishable; numbers correctly rendered in roman style instead of italic
17:07, 27 ביוני 2009תמונה ממוזערת לגרסה מ־17:07, 27 ביוני 2009‪460 × 720‬ (55 ק"ב)Autiwafichier environ 2 fois moins gros. Purgé des définitions inutiles, et avec des plots optimisés au niveau du nombre de points.
21:22, 5 בספטמבר 2008תמונה ממוזערת לגרסה מ־21:22, 5 בספטמבר 2008‪460 × 720‬ (109 ק"ב)PatríciaRfrom http://tools.wikimedia.pl/~beau/imgs/ (recovering lost file)
22:09, 2 באפריל 2008אין תמונה ממוזערת (109 ק"ב)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

הדף הבא משתמש בקובץ הזה:

שימוש גלובלי בקובץ

אתרי הוויקי השונים הבאים משתמשים בקובץ זה:

צפו בשימושים בקובץ זה במיזמי ויקימדיה נוספים.

מטא־נתונים