{"id":1647,"date":"2023-07-25T12:50:55","date_gmt":"2023-07-25T12:50:55","guid":{"rendered":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/"},"modified":"2023-07-25T12:50:55","modified_gmt":"2023-07-25T12:50:55","slug":"python-kurvenanpassung","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/","title":{"rendered":"Kurvenanpassung in python (mit beispielen)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">H\u00e4ufig m\u00f6chten Sie m\u00f6glicherweise eine Kurve an einen Datensatz in Python anpassen.<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-16261 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython3.png\" alt=\"\" width=\"392\" height=\"265\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Das folgende Schritt-f\u00fcr-Schritt-Beispiel erkl\u00e4rt, wie man in Python mit der Funktion <a href=\"https:\/\/numpy.org\/doc\/stable\/reference\/generated\/numpy.polyfit.html\" target=\"_blank\" rel=\"noopener\">numpy.polyfit()<\/a> Kurven an Daten anpasst und wie man ermittelt, welche Kurve am besten zu den Daten passt.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 1: Daten erstellen und visualisieren<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Beginnen wir mit der Erstellung eines gef\u00e4lschten Datensatzes und erstellen dann ein Streudiagramm, um die Daten zu visualisieren:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#createDataFrame\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x<\/span> ': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],\n                   ' <span style=\"color: #ff0000;\">y<\/span> ': [3, 14, 23, 25, 23, 15, 9, 5, 9, 13, 17, 24, 32, 36, 46]})\n\n<span style=\"color: #008080;\">#create scatterplot of x vs. y\n<\/span>plt. <span style=\"color: #3366ff;\">scatter<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> )<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-16259 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython1.png\" alt=\"\" width=\"399\" height=\"269\" srcset=\"\" sizes=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 2: Passen Sie mehrere Kurven an<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Passen wir dann mehrere polynomiale Regressionsmodelle an die Daten an und visualisieren die Kurve jedes Modells im selben Diagramm:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#fit polynomial models up to degree 5\n<\/span>model1 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 1))\nmodel2 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 2))\nmodel3 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 3))\nmodel4 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 4))\nmodel5 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 5))\n\n<span style=\"color: #008080;\">#create scatterplot\n<\/span>polyline = np. <span style=\"color: #3366ff;\">linspace<\/span> (1, 15, 50)\nplt. <span style=\"color: #3366ff;\">scatter<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> )\n\n<span style=\"color: #008080;\">#add fitted polynomial lines to scatterplot \n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model1(polyline), color=' <span style=\"color: #ff0000;\">green<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model2(polyline), color=' <span style=\"color: #ff0000;\">red<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model3(polyline), color=' <span style=\"color: #ff0000;\">purple<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model4(polyline), color=' <span style=\"color: #ff0000;\">blue<\/span> ')\nplt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model5(polyline), color=' <span style=\"color: #ff0000;\">orange<\/span> ')\nplt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/span><\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-16260 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython2.png\" alt=\"\" width=\"408\" height=\"279\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Um zu bestimmen, welche Kurve am besten zu den Daten passt, k\u00f6nnen wir uns das <a href=\"https:\/\/statorials.org\/de\/r-quadrate-in-r-passt\/\" target=\"_blank\" rel=\"noopener\">angepasste R-Quadrat<\/a> jedes Modells ansehen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Dieser Wert gibt uns den Prozentsatz der Variation in der Antwortvariablen an, der durch die Pr\u00e4diktorvariablen im Modell erkl\u00e4rt werden kann, angepasst an die Anzahl der Pr\u00e4diktorvariablen.<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define function to calculate adjusted r-squared\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">def<\/span> adjR(x, y, degree):\n    results = {}\n    coeffs = np. <span style=\"color: #3366ff;\">polyfit<\/span> (x, y, degree)\n    p = np. <span style=\"color: #3366ff;\">poly1d<\/span> (coeffs)\n    yhat = p(x)\n    ybar = np. <span style=\"color: #3366ff;\">sum<\/span> (y)\/len(y)\n    ssreg = np. <span style=\"color: #3366ff;\">sum<\/span> ((yhat-ybar)**2)\n    sstot = np. <span style=\"color: #3366ff;\">sum<\/span> ((y - ybar)**2)\n    results[' <span style=\"color: #ff0000;\">r_squared<\/span> '] = 1- (((1-(ssreg\/sstot))*(len(y)-1))\/(len(y)-degree-1))\n\n    <span style=\"color: #008000;\">return<\/span> results<\/span>\n\n#calculated adjusted R-squared of each model\n<\/span>adjR(df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 1)\nadjR(df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 2)\nadjR(df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 3)\nadjR(df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 4)\nadjR(df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 5)\n\n{'r_squared': 0.3144819}\n{'r_squared': 0.5186706}\n{'r_squared': 0.7842864}\n{'r_squared': 0.9590276}\n{'r_squared': 0.9549709}\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Aus dem Ergebnis k\u00f6nnen wir ersehen, dass das Modell mit dem h\u00f6chsten angepassten R-Quadrat das Polynom vierten Grades ist, das einen angepassten R-Quadrat von <strong>0,959<\/strong> aufweist.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 3: Visualisieren Sie die endg\u00fcltige Kurve<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Schlie\u00dflich k\u00f6nnen wir ein Streudiagramm mit der Kurve des Polynommodells vierten Grades erstellen:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#fit fourth-degree polynomial\n<\/span>model4 = np. <span style=\"color: #3366ff;\">poly1d<\/span> (np. <span style=\"color: #3366ff;\">polyfit<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> , 4))\n\n<span style=\"color: #008080;\">#define scatterplot\n<\/span>polyline = np. <span style=\"color: #3366ff;\">linspace<\/span> (1, 15, 50)\nplt. <span style=\"color: #3366ff;\">scatter<\/span> (df. <span style=\"color: #3366ff;\">x<\/span> , df. <span style=\"color: #3366ff;\">y<\/span> )\n\n<span style=\"color: #008080;\">#add fitted polynomial curve to scatterplot\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (polyline, model4(polyline), ' <span style=\"color: #ff0000;\">--<\/span> ', color=' <span style=\"color: #ff0000;\">red<\/span> ')\nplt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-16261 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython3.png\" alt=\"\" width=\"392\" height=\"265\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die Gleichung f\u00fcr diese Zeile auch mit der Funktion <strong>print()<\/strong> erhalten:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #993300;\">print<\/span> (model4)\n\n          4 3 2\n-0.01924x + 0.7081x - 8.365x + 35.82x - 26.52\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Die Gleichung der Kurve lautet wie folgt:<\/span><\/p>\n<p> <span style=\"color: #000000;\">y = -0,01924x <sup>4<\/sup> + 0,7081x <sup>3<\/sup> \u2013 8,365x <sup>2<\/sup> + 35,82x \u2013 26,52<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen diese Gleichung verwenden, um den Wert der <a href=\"https:\/\/statorials.org\/de\/variablen-erklarende-antworten\/\" target=\"_blank\" rel=\"noopener\">Antwortvariablen<\/a> basierend auf den Pr\u00e4diktorvariablen im Modell vorherzusagen. Wenn zum Beispiel <em>x<\/em> = 4, dann w\u00fcrden wir <em>y<\/em> = <strong>23,32<\/strong> vorhersagen:<\/span><\/p>\n<p> <span style=\"color: #000000;\">y = -0,0192(4) <sup>4<\/sup> + 0,7081(4) <sup>3<\/sup> \u2013 8,365(4) <sup>2<\/sup> + 35,82(4) \u2013 26,52 = 23,32<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h3>\n<p> <a href=\"https:\/\/statorials.org\/de\/polynomielle-regression-1\/\" target=\"_blank\" rel=\"noopener\">Eine Einf\u00fchrung in die Polynomregression<br \/><\/a> <a href=\"https:\/\/statorials.org\/de\/polynomregression-python\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie eine Polynomregression in Python durch<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>H\u00e4ufig m\u00f6chten Sie m\u00f6glicherweise eine Kurve an einen Datensatz in Python anpassen. Das folgende Schritt-f\u00fcr-Schritt-Beispiel erkl\u00e4rt, wie man in Python mit der Funktion numpy.polyfit() Kurven an Daten anpasst und wie man ermittelt, welche Kurve am besten zu den Daten passt. Schritt 1: Daten erstellen und visualisieren Beginnen wir mit der Erstellung eines gef\u00e4lschten Datensatzes und [&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>Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.\" \/>\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\/python-kurvenanpassung\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-25T12:50:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython3.png\" \/>\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=\"3 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/\",\"url\":\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/\",\"name\":\"Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-25T12:50:55+00:00\",\"dateModified\":\"2023-07-25T12:50:55+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/python-kurvenanpassung\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kurvenanpassung in python (mit beispielen)\"}]},{\"@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":"Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik","description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.","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\/python-kurvenanpassung\/","og_locale":"de_DE","og_type":"article","og_title":"Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.","og_url":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/","og_site_name":"Statorials","article_published_time":"2023-07-25T12:50:55+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/courbepython3.png"}],"author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"3 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/","url":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/","name":"Kurvenanpassung in Python (mit Beispielen) \u2013 Statistik","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-25T12:50:55+00:00","dateModified":"2023-07-25T12:50:55+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Kurven in Python angepasst werden.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/python-kurvenanpassung\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/python-kurvenanpassung\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"Kurvenanpassung in python (mit beispielen)"}]},{"@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\/1647"}],"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=1647"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/1647\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=1647"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=1647"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=1647"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}