So zeichnen sie eine normalverteilung in r auf
Um eine Normalverteilung in R darzustellen, können wir entweder Basis-R verwenden oder ein anspruchsvolleres Paket wie ggplot2 installieren.
Verwenden von BaseR
Hier sind drei Beispiele für die Erstellung eines Normalverteilungsdiagramms mit Basis R.
Beispiel 1: Normalverteilung mit Mittelwert = 0 und Standardabweichung = 1
Um ein Normalverteilungsdiagramm mit Mittelwert = 0 und Standardabweichung = 1 zu erstellen, können wir den folgenden Code verwenden:
#Create a sequence of 100 equally spaced numbers between -4 and 4 x <- seq(-4, 4, length=100) #create a vector of values that shows the height of the probability distribution #for each value in x y <- dnorm(x) #plot x and y as a scatterplot with connected lines (type = "l") and add #an x-axis with custom labels plot(x,y, type = "l", lwd = 2, axes = FALSE, xlab = "", ylab = "") axis(1, at = -3:3, labels = c("-3s", "-2s", "-1s", "mean", "1s", "2s", "3s"))
Dies erzeugt die folgende Darstellung:
Beispiel 2: Normalverteilung mit Mittelwert = 0 und Standardabweichung = 1 (weniger Code)
Wir könnten auch ein Normalverteilungsdiagramm erstellen, ohne x und y zu definieren und einfach die Funktion „Kurve“ mit dem folgenden Code verwenden:
curve(dnorm, -3.5, 3.5, lwd=2, axes = FALSE, xlab = "", ylab = "") axis(1, at = -3:3, labels = c("-3s", "-2s", "-1s", "mean", "1s", "2s", "3s"))
Dies erzeugt genau das gleiche Diagramm:
Beispiel 3: Normalverteilung mit benutzerdefiniertem Mittelwert und Standardabweichung
Um ein Normalverteilungsdiagramm mit benutzerdefiniertem Mittelwert und Standardabweichung zu erstellen, können wir den folgenden Code verwenden:
#define population mean and standard deviation population_mean <- 50 population_sd <- 5 #define upper and lower bound lower_bound <- population_mean - population_sd upper_bound <- population_mean + population_sd #Create a sequence of 1000 x values based on population mean and standard deviation x <- seq(-4, 4, length = 1000) * population_sd + population_mean #create a vector of values that shows the height of the probability distribution #for each value in x y <- dnorm(x, population_mean, population_sd) #plot normal distribution with customized x-axis labels plot(x,y, type = "l", lwd = 2, axes = FALSE, xlab = "", ylab = "") sd_axis_bounds = 5 axis_bounds <- seq(-sd_axis_bounds * population_sd + population_mean, sd_axis_bounds * population_sd + population_mean, by = population_sd) axis(side = 1, at = axis_bounds, pos = 0)
Dies erzeugt die folgende Darstellung:
Verwendung von ggplot2
Eine andere Möglichkeit, ein Normalverteilungsdiagramm in R zu erstellen, ist die Verwendung des Pakets ggplot2. Hier sind zwei Beispiele für die Erstellung eines Normalverteilungsdiagramms mit ggplot2.
Beispiel 1: Normalverteilung mit Mittelwert = 0 und Standardabweichung = 1
Um ein Normalverteilungsdiagramm mit Mittelwert = 0 und Standardabweichung = 1 zu erstellen, können wir den folgenden Code verwenden:
#install (if not already installed) and load ggplot2 if(!(require(ggplot2))){install.packages('ggplot2')} #generate a normal distribution plot ggplot(data.frame(x = c(-4, 4)), aes(x = x)) + stat_function(fun = dnorm)
Dies erzeugt die folgende Darstellung:
Beispiel 2: Normalverteilung mit dem Datensatz „mtcars“.
Der folgende Code zeigt, wie eine Normalverteilung für die Spalte „Meilen pro Gallone“ im eingebetteten R-Datensatz „ mtcars “ erstellt wird:
ggplot(mtcars, aes(x = mpg)) + stat_function( fun = dnorm, args = with(mtcars, c(mean = mean(mpg), sd = sd(mpg))) ) + scale_x_continuous("Miles per gallon")
Dies erzeugt die folgende Darstellung: