{"id":457,"date":"2023-07-29T20:24:26","date_gmt":"2023-07-29T20:24:26","guid":{"rendered":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/"},"modified":"2023-07-29T20:24:26","modified_gmt":"2023-07-29T20:24:26","slug":"dnorm-pnorm-rnorm-qnorm-in-r","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/","title":{"rendered":"Eine anleitung zu dnorm, pnorm, qnorm und rnorm in r"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Die <a href=\"https:\/\/statorials.org\/de\/die-normalverteilung\/\" target=\"_blank\" rel=\"noopener\">Normalverteilung<\/a> ist die in der Statistik am h\u00e4ufigsten verwendete Verteilung. In diesem Tutorial wird erl\u00e4utert, wie Sie die Normalverteilung in R mithilfe der Funktionen <strong>dnorm<\/strong> , <strong>pnorm<\/strong> , <strong>rnorm<\/strong> und <strong>qnorm<\/strong> verwenden.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">schrecklich<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Die <strong>dnorm-<\/strong> Funktion gibt den Wert der Wahrscheinlichkeitsdichtefunktion (pdf) der Normalverteilung bei gegebener Zufallsvariable <em>x<\/em> , einem Populationsmittelwert <em>\u03bc<\/em> und einer Populationsstandardabweichung <em>\u03c3<\/em> zur\u00fcck. Die Syntax f\u00fcr die Verwendung von dnorm lautet wie folgt:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">dnorm(x, Mittelwert, sd)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt einige Beispiele von <strong>dnorm<\/strong> in Aktion:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find the value of the standard normal distribution pdf at x=0<\/span>\ndnorm(x=0, mean=0, sd=1)\n#[1]0.3989423\n<span style=\"color: #008080;\">\n#by default, R uses mean=0 and sd=1<\/span>\ndnorm(x=0)\n#[1]0.3989423\n\n<span style=\"color: #008080;\">#find the value of the normal distribution pdf at x=10 with mean=20 and sd=5\n<span style=\"color: #000000;\">dnorm(x=10, mean=20, sd=5)<\/span>\n<span style=\"color: #000000;\">#[1]0.01079819<\/span><\/span>\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Wenn Sie versuchen, Fragen zur Wahrscheinlichkeit mithilfe der Normalverteilung zu l\u00f6sen, verwenden Sie normalerweise h\u00e4ufig <strong>pnorm<\/strong> anstelle von <strong>dnorm<\/strong> . Eine n\u00fctzliche Anwendung von <strong>dnorm<\/strong> besteht jedoch darin, ein Normalverteilungsdiagramm in R zu erstellen. Der folgende Code veranschaulicht, wie das geht:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#Create a sequence of 100 equally spaced numbers between -4 and 4<\/span>\nx &lt;- seq(-4, 4, length=100)\n\n<span style=\"color: #008080;\">#create a vector of values that shows the height of the probability distribution<\/span>\n<span style=\"color: #008080;\">#for each value in x<\/span>\ny &lt;- dnorm(x)\n\n<span style=\"color: #008080;\">#plot x and y as a scatterplot with connected lines (type = \"l\") and add<\/span>\n<span style=\"color: #008080;\">#an x-axis with custom labels<\/span>\nplot(x,y, type = \"l\", lwd = 2, axes = FALSE, xlab = \"\", ylab = \"\")\naxis(1, at = -3:3, labels = c(\"-3s\", \"-2s\", \"-1s\", \"mean\", \"1s\", \"2s\", \"3s\"))<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Dies erzeugt die folgende Darstellung:<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">pnorm<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Die <strong>pnorm-<\/strong> Funktion gibt den Wert der kumulativen Dichtefunktion (cdf) der Normalverteilung bei gegebener Zufallsvariable <em>q<\/em> , einem Populationsmittelwert <em>\u03bc<\/em> und einer Populationsstandardabweichung <em>\u03c3<\/em> zur\u00fcck. Die Syntax f\u00fcr die Verwendung von pnorm lautet wie folgt:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">pnorm(q, Mittelwert, SD)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Vereinfacht ausgedr\u00fcckt gibt <strong>pnorm<\/strong> die Fl\u00e4che links von einem gegebenen Wert <em>x<\/em> in der Normalverteilung zur\u00fcck. Wenn Sie sich f\u00fcr den Bereich rechts von einem bestimmten <em>q-<\/em> Wert interessieren, k\u00f6nnen Sie einfach das Argument <strong>Lower.tail = FALSE<\/strong> hinzuf\u00fcgen<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">pnorm(q, Durchschnitt, SD, unterer Schwanz = FALSCH)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele veranschaulichen, wie man einige Wahrscheinlichkeitsfragen mit pnorm l\u00f6st.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 1:<\/strong> <em>Angenommen, die Gr\u00f6\u00dfe der M\u00e4nner in einer bestimmten Schule ist normalverteilt mit einem Mittelwert von <span aria-hidden=\"true\" aria-describedby=\"katex-7\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03bc<\/span> <span class=\"mrel\">= 70 Zoll und<\/span><\/span><\/span><\/span><\/span> einer Standardabweichung von <span aria-hidden=\"true\" aria-describedby=\"katex-8\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03c3 = 2 Zoll.<\/span><\/span><\/span><\/span><\/span><\/em> <em><span aria-hidden=\"true\" aria-describedby=\"katex-8\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">Wie viel Prozent der M\u00e4nner an dieser Schule sind ungef\u00e4hr \u00fcber 74 Zoll gro\u00df?<\/span><\/span><\/span><\/span><\/span><\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find percentage of males that are taller than 74 inches in a population with<\/span>\n<span style=\"color: #008080;\">#mean = 70 and sd = 2<\/span>\npnorm(74, mean=70, sd=2, lower.tail=FALSE)\n\n# <span style=\"color: #008080;\"><span style=\"color: #000000;\">[1]0.02275013<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">An dieser Schule sind 2.275 % der M\u00e4nner \u00fcber 74 Zoll gro\u00df.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 2:<\/strong> <em>Angenommen, das Gewicht einer bestimmten Otterart ist normalverteilt mit einem Mittelwert von <span aria-hidden=\"true\" aria-describedby=\"katex-7\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03bc<\/span> <span class=\"mrel\">= 30 lb und<\/span><\/span><\/span><\/span><\/span> einer Standardabweichung von <span aria-hidden=\"true\" aria-describedby=\"katex-8\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03c3 = 5 lb. Wie viel Prozent dieser Otterart wiegt ungef\u00e4hr weniger als 22 Pfund?<\/span><\/span><\/span><\/span><\/span><\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find percentage of otters that weight less than 22 lbs in a population with<\/span>\n<span style=\"color: #008080;\">#mean = 30 and sd = 5<\/span>\npnorm(22, mean=30, sd=5)\n\n# <span style=\"color: #008080;\"><span style=\"color: #000000;\">[1]0.05479929<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Etwa 5,4799 % dieser Otterart wiegen weniger als 22 Pfund.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 3:<\/strong> <em>Angenommen, die H\u00f6he der Pflanzen in einer bestimmten Region ist normalverteilt mit einem Mittelwert von <span aria-hidden=\"true\" aria-describedby=\"katex-7\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03bc<\/span> <span class=\"mrel\">= 13 Zoll und<\/span><\/span><\/span><\/span><\/span> einer Standardabweichung von <span aria-hidden=\"true\" aria-describedby=\"katex-8\"><span class=\"katex\"><span class=\"katex-html\" aria-hidden=\"true\"><span class=\"base\"><span class=\"mord mathit\">\u03c3 = 2 Zoll. Wie viel Prozent der Pflanzen in dieser Region sind ungef\u00e4hr zwischen 10 und 14 Zoll gro\u00df?<\/span><\/span><\/span><\/span><\/span><\/em><\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find percentage of plants that are less than 14 inches tall, then subtract the\n#percentage of plants that are less than 10 inches tall, based on a population\n#with mean = 13 and sd = 2<\/span>\npnorm(14, mean=13, sd=2) - pnorm(10, mean=13, sd=2)\n\n# <span style=\"color: #008080;\"><span style=\"color: #000000;\">[1]0.6246553<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Etwa 62,4655 % der Pflanzen in dieser Region sind zwischen 10 und 14 Zoll gro\u00df.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">qnorm<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Die <strong>qnorm-<\/strong> Funktion gibt den Wert der inversen kumulativen Dichtefunktion (cdf) der Normalverteilung zur\u00fcck, wenn eine Zufallsvariable <em>p<\/em> , ein Populationsmittelwert <em>\u03bc<\/em> und eine Populationsstandardabweichung <em>\u03c3<\/em> gegeben sind. Die Syntax f\u00fcr die Verwendung von qnorm lautet wie folgt:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">qnorm (p, Mittelwert, SD)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Einfach ausgedr\u00fcckt k\u00f6nnen Sie <strong>qnorm<\/strong> verwenden, um herauszufinden, wie hoch der Z-Wert des <sup>p-ten<\/sup> Quantils der Normalverteilung ist.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt einige Beispiele von <strong>qnorm<\/strong> in Aktion:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find the Z-score of the 99th quantile of the standard normal distribution<\/span> \nqnorm(.99, mean=0, sd=1)\n#[1]2.326348\n\n<span style=\"color: #008080;\">#by default, R uses mean=0 and sd=1\n<span style=\"color: #000000;\">qnorm(.99)<\/span>\n<span style=\"color: #000000;\">#[1]2.326348\n\n<span style=\"color: #008080;\">#find the Z-score of the 95th quantile of the standard normal distribution<\/span>\nqnorm(.95)\n#[1]1.644854\n\n<span style=\"color: #008080;\">#find the Z-score of the 10th quantile of the standard normal distribution<\/span>\nqnorm(.10)\n#[1]-1.281552<\/span>\n<\/span><\/strong><\/pre>\n<h2> <strong><span style=\"color: #000000;\">rnorm<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Die <strong>rnorm-<\/strong> Funktion generiert einen Vektor normalverteilter Zufallsvariablen bei gegebener Vektorl\u00e4nge <em>n<\/em> , einem Populationsmittelwert <em>\u03bc<\/em> und einer Populationsstandardabweichung <em>\u03c3<\/em> . Die Syntax f\u00fcr die Verwendung von rnorm lautet wie folgt:<\/span><\/p>\n<p style=\"text-align: center;\"> <strong><span style=\"color: #000000;\">rnorm(n, Mittelwert, SD)<\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt einige Beispiele von <strong>rnorm<\/strong> in Aktion:<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#generate a vector of 5 normally distributed random variables with mean=10 and sd=2<\/span>\nfive &lt;- rnorm(5, mean = 10, sd = 2)\nfive\n# [1] 10.658117 8.613495 10.561760 11.123492 10.802768\n\n<span style=\"color: #008080;\"><span style=\"color: #008080;\">#generate a vector of 1000 normally distributed random variables with mean=50 and sd=5\n<\/span><span style=\"color: #000000;\"><span style=\"color: #000000;\">narrowDistribution &lt;- rnorm(1000, mean = 50, sd = 15)\n\n<\/span><span style=\"color: #008080;\">#generate a vector of 1000 normally distributed random variables with mean=50 and sd=25<\/span><span style=\"color: #000000;\">\nwideDistribution &lt;- rnorm(1000, mean = 50, sd = 25)\n\n<\/span><span style=\"color: #008080;\">#generate two histograms to view these two distributions side by side, specify\n#50 bars in histogram and x-axis limits of -50 to 150\n<span style=\"color: #000000;\">par(mfrow=c(1, 2)) #one row, two columns<\/span>\n<span style=\"color: #000000;\">hist(narrowDistribution, breaks=50, xlim=c(-50, 150))<\/span>\n<span style=\"color: #000000;\">hist(wideDistribution, breaks=50, xlim=c(-50, 150))<\/span>\n<\/span><\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Dadurch werden folgende Histogramme generiert:<\/span><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass die breite Verteilung viel breiter ist als die enge Verteilung. Tats\u00e4chlich haben wir angegeben, dass die Standardabweichung in der breiten Verteilung 25 betrug, w\u00e4hrend sie in der engen Verteilung nur 15 betrug. Beachten Sie auch, dass beide Histogramme um den Mittelwert von 50 zentriert sind.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Die Normalverteilung ist die in der Statistik am h\u00e4ufigsten verwendete Verteilung. In diesem Tutorial wird erl\u00e4utert, wie Sie die Normalverteilung in R mithilfe der Funktionen dnorm , pnorm , rnorm und qnorm verwenden. schrecklich Die dnorm- Funktion gibt den Wert der Wahrscheinlichkeitsdichtefunktion (pdf) der Normalverteilung bei gegebener Zufallsvariable x , einem Populationsmittelwert \u03bc und einer [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T20:24:26+00:00\" \/>\n<meta name=\"author\" content=\"Dr. Benjamin Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. Benjamin Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/\",\"url\":\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/\",\"name\":\"Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-29T20:24:26+00:00\",\"dateModified\":\"2023-07-29T20:24:26+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Eine anleitung zu dnorm, pnorm, qnorm und rnorm in r\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/de\/#website\",\"url\":\"https:\/\/statorials.org\/de\/\",\"name\":\"Statorials\",\"description\":\"Ihr Leitfaden f\u00fcr statistische Kompetenz !\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\",\"name\":\"Dr. Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. Benjamin Anderson\"},\"description\":\"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen\",\"sameAs\":[\"https:\/\/statorials.org\/de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials","description":"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/","og_locale":"de_DE","og_type":"article","og_title":"Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials","og_description":"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.","og_url":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/","og_site_name":"Statorials","article_published_time":"2023-07-29T20:24:26+00:00","author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"4 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/","url":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/","name":"Eine Anleitung zu dnorm, pnorm, qnorm und rnorm in R \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-29T20:24:26+00:00","dateModified":"2023-07-29T20:24:26+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"Eine einfache Anleitung zu den Funktionen dnorm, pnorm, rnorm und qnorm in R.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/dnorm-pnorm-rnorm-qnorm-in-r\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"Eine anleitung zu dnorm, pnorm, qnorm und rnorm in r"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/de\/#website","url":"https:\/\/statorials.org\/de\/","name":"Statorials","description":"Ihr Leitfaden f\u00fcr statistische Kompetenz !","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"Person","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0","name":"Dr. Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Dr. Benjamin Anderson"},"description":"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen","sameAs":["https:\/\/statorials.org\/de"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/457"}],"collection":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/comments?post=457"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/457\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}