{"id":2233,"date":"2023-07-23T03:34:09","date_gmt":"2023-07-23T03:34:09","guid":{"rendered":"https:\/\/statorials.org\/de\/faustregel-in-r\/"},"modified":"2023-07-23T03:34:09","modified_gmt":"2023-07-23T03:34:09","slug":"faustregel-in-r","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/faustregel-in-r\/","title":{"rendered":"So wenden sie die faustregel in r an"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Die <b>Faustregel<\/b> , manchmal auch 68-95-99,7-Regel genannt, besagt, dass f\u00fcr einen gegebenen Datensatz mit einer Normalverteilung:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><b>68 %<\/b> der Datenwerte liegen innerhalb einer Standardabweichung vom Mittelwert.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><b>95 %<\/b> der Datenwerte liegen innerhalb von zwei Standardabweichungen vom Mittelwert.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><b>99,7 %<\/b> der Datenwerte liegen innerhalb von drei Standardabweichungen vom Mittelwert.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">In diesem Tutorial erkl\u00e4ren wir, wie man die Faustregel in R auf einen bestimmten Datensatz anwendet.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Anwendung der Faustregel in R<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Die Funktion <strong>pnorm()<\/strong> in R gibt den Wert der kumulativen Dichtefunktion der Normalverteilung zur\u00fcck.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Diese Funktion verwendet die folgende grundlegende Syntax:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>pnorm(q, Mittelwert, SD)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Gold:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>q<\/strong> : normalverteilter Zufallsvariablenwert<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Mittelwert<\/strong> : Mittelwertverteilung<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>sd<\/strong> : Standardabweichung der Verteilung<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Mit der folgenden Syntax k\u00f6nnen wir die Fl\u00e4che unter der Normalverteilungskurve ermitteln, die zwischen verschiedenen Standardabweichungen liegt:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find area under normal curve within 1 standard deviation of mean<\/span>\npnorm(1) - pnorm(-1)\n\n[1] 0.6826895\n\n<span style=\"color: #008080;\">#find area under normal curve within 2 standard deviations of mean<\/span> \npnorm(2) - pnorm(-2)\n\n[1] 0.9544997\n\n<span style=\"color: #008080;\">#find area under normal curve within 3 standard deviations of mean<\/span> \npnorm(3) - pnorm(-3)\n\n[1] 0.9973002\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Aus dem Ergebnis k\u00f6nnen wir best\u00e4tigen:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><b>68 %<\/b> der Datenwerte liegen innerhalb einer Standardabweichung vom Mittelwert.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><b>95 %<\/b> der Datenwerte liegen innerhalb von zwei Standardabweichungen vom Mittelwert.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><b>99,7 %<\/b> der Datenwerte liegen innerhalb von drei Standardabweichungen vom Mittelwert.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele zeigen, wie die Faustregel bei verschiedenen Datens\u00e4tzen in der Praxis angewendet werden kann.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 1: Anwenden der empirischen Regel auf einen Datensatz in R<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Angenommen, wir haben einen normalverteilten Datensatz mit einem Mittelwert von <strong>7<\/strong> und einer Standardabweichung von <strong>2,2<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Mit dem folgenden Code k\u00f6nnen wir ermitteln, welche Werte 68 %, 95 % und 99,7 % der Daten enthalten:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#define mean and standard deviation values<\/span>\nmean=7<\/span>\n<span style=\"color: #000000;\">sd=2.2<\/span>\n\n#find which values contain 68% of data<\/span>\nmean-2.2; mean+2.2\n\n[1] 4.8\n[1] 9.2\n\n<span style=\"color: #008080;\">#find which values contain 95% of data\n<\/span>mean-2*2.2; mean+2*2.2\n\n[1] 2.6\n[1] 11.4\n\n<span style=\"color: #008080;\">#find which values contain 99.7% of data\n<\/span>mean-3*2.2; mean+3*2.2\n\n[1] 0.4\n[1] 13.6\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Aus dieser Ausgabe k\u00f6nnen wir sehen:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">68 % der Daten liegen zwischen <strong>4,8<\/strong> und <strong>9,2<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">95 % der Daten liegen zwischen <strong>2,6<\/strong> und <strong>11,4<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">99,7 % der Daten liegen zwischen <strong>0,4<\/strong> und <strong>13,6<\/strong><\/span><\/li>\n<\/ul>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 2: Bestimmen Sie, wie viel Prozent der Daten zwischen bestimmten Werten liegen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Stellen Sie sich vor, wir haben einen normalverteilten Datensatz mit einem Mittelwert von 100 und einer Standardabweichung von 5.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Angenommen, wir m\u00f6chten wissen, wie viel Prozent der Daten in dieser Verteilung zwischen den Werten <strong>99<\/strong> und <strong>105<\/strong> liegen.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Wir k\u00f6nnen die Funktion <strong>pnorm(<\/strong> ) verwenden, um die Antwort zu finden:<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#find area under normal curve between 99 and 105<\/span>\npnorm(105, mean=100, sd=5) - pnorm(99, mean=100, sd=5)\n\n[1] 0.4206045\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Wir sehen, dass <strong>42,06 %<\/strong> der Daten f\u00fcr diese Verteilung zwischen den Werten 99 und 105 liegen.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h3>\n<p> <a href=\"https:\/\/statorials.org\/de\/excel-faustregel\/\" target=\"_blank\" rel=\"noopener\">So wenden Sie die Faustregel in Excel an<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/praktische-regel-empirische-probleme\/\" target=\"_blank\" rel=\"noopener\">Probleme bei der Anwendung von Faustregeln<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/faustregel-rechner\/\" target=\"_blank\" rel=\"noopener\">Faustregelrechner<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Die Faustregel , manchmal auch 68-95-99,7-Regel genannt, besagt, dass f\u00fcr einen gegebenen Datensatz mit einer Normalverteilung: 68 % der Datenwerte liegen innerhalb einer Standardabweichung vom Mittelwert. 95 % der Datenwerte liegen innerhalb von zwei Standardabweichungen vom Mittelwert. 99,7 % der Datenwerte liegen innerhalb von drei Standardabweichungen vom Mittelwert. In diesem Tutorial erkl\u00e4ren wir, wie man [&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>Wie man die Faustregel in der R-Statorials anwendet<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.\" \/>\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\/faustregel-in-r\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wie man die Faustregel in der R-Statorials anwendet\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/faustregel-in-r\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T03:34:09+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=\"2 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/faustregel-in-r\/\",\"url\":\"https:\/\/statorials.org\/de\/faustregel-in-r\/\",\"name\":\"Wie man die Faustregel in der R-Statorials anwendet\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-23T03:34:09+00:00\",\"dateModified\":\"2023-07-23T03:34:09+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/faustregel-in-r\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/faustregel-in-r\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/faustregel-in-r\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So wenden sie die faustregel in r an\"}]},{\"@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":"Wie man die Faustregel in der R-Statorials anwendet","description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.","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\/faustregel-in-r\/","og_locale":"de_DE","og_type":"article","og_title":"Wie man die Faustregel in der R-Statorials anwendet","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.","og_url":"https:\/\/statorials.org\/de\/faustregel-in-r\/","og_site_name":"Statorials","article_published_time":"2023-07-23T03:34:09+00:00","author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"2 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/faustregel-in-r\/","url":"https:\/\/statorials.org\/de\/faustregel-in-r\/","name":"Wie man die Faustregel in der R-Statorials anwendet","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-23T03:34:09+00:00","dateModified":"2023-07-23T03:34:09+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie die Faustregel in R angewendet wird.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/faustregel-in-r\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/faustregel-in-r\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/faustregel-in-r\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So wenden sie die faustregel in r an"}]},{"@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\/2233"}],"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=2233"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2233\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}