File:Histogramme tirage aléatoire normale 100 valeurs GNU R.svg
Summary
Description |
Français : Histogramme représentant un échantillon de 100 valeurs aléatoires tirées suivant une loi normale.
Réalisé avec GNU R, modifié avec Inkscape. English: Histogram showing a sample of 100 random values following a normal law.
Made with GNU R, modified with Inkscape. |
Date | |
Source | Own work |
Author | Cdang |
SVG development | Category:Valid SVG created with R code#Histogramme%20tirage%20aléatoire%20normale%20100%20valeurs%20GNU%20R.svg ![]() Category:Translation possible - SVGThis chart uses embedded text that can be easily translated using a text editor. |
Source code | R code> a = rnorm(100)
> hist(a, breaks = 10, main = "tirage aléatoire", col = "lightblue")
> rug(a)
> adens = density(a, bw=0.2)
> par(new=TRUE)
> plot(adens$x, adens$y, type="l", axes=FALSE, col="red")
> axis(4)
|
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.