{"id":2472,"date":"2023-07-22T03:00:29","date_gmt":"2023-07-22T03:00:29","guid":{"rendered":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/"},"modified":"2023-07-22T03:00:29","modified_gmt":"2023-07-22T03:00:29","slug":"likelihood-ratio-test-in-python","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/","title":{"rendered":"So f\u00fchren sie einen likelihood-ratio-test in python durch"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Ein <strong>Likelihood-Ratio-Test<\/strong> vergleicht die Anpassungsg\u00fcte zweier verschachtelter <a href=\"https:\/\/statorials.org\/de\/multiple-lineare-regression\/\" target=\"_blank\" rel=\"noopener\">Regressionsmodelle<\/a> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ein <a href=\"https:\/\/statorials.org\/de\/verschachteltes-modell\/\" target=\"_blank\" rel=\"noopener\">verschachteltes Modell<\/a> ist einfach ein Modell, das eine Teilmenge von Pr\u00e4diktorvariablen im gesamten Regressionsmodell enth\u00e4lt.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Angenommen, wir haben das folgende Regressionsmodell mit vier Pr\u00e4diktorvariablen:<\/span><\/p>\n<p> <span style=\"color: #000000;\">Y = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> x <sub>1<\/sub> + \u03b2 <sub>2<\/sub> x <sub>2<\/sub> + \u03b2 <sub>3<\/sub> x <sub>3<\/sub> + \u03b2 <sub>4<\/sub> x <sub>4<\/sub> + \u03b5<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ein Beispiel f\u00fcr ein verschachteltes Modell w\u00e4re das folgende Modell mit nur zwei der urspr\u00fcnglichen Pr\u00e4diktorvariablen:<\/span><\/p>\n<p> <span style=\"color: #000000;\">Y = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> x <sub>1<\/sub> + \u03b2 <sub>2<\/sub> x <sub>2<\/sub> + \u03b5<\/span><\/p>\n<p> <span style=\"color: #000000;\">Um festzustellen, ob sich diese beiden Modelle erheblich unterscheiden, k\u00f6nnen wir einen Likelihood-Ratio-Test durchf\u00fchren, der die folgenden Null- und Alternativhypothesen verwendet:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> :<\/strong> Das vollst\u00e4ndige Modell und das verschachtelte Modell passen gleich gut zu den Daten. Sie sollten also <strong>ein verschachteltes Modell verwenden<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>H <sub>A<\/sub> :<\/strong> Das vollst\u00e4ndige Modell passt deutlich besser zu den Daten als das verschachtelte Modell. Sie m\u00fcssen also <strong>die vollst\u00e4ndige Vorlage verwenden<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wenn der <a href=\"https:\/\/statorials.org\/de\/p-werte-statistische-signifikanz\/\" target=\"_blank\" rel=\"noopener\">p-Wert<\/a> des Tests unter einem bestimmten Signifikanzniveau liegt (z. B. 0,05), k\u00f6nnen wir die Nullhypothese ablehnen und daraus schlie\u00dfen, dass das vollst\u00e4ndige Modell eine deutlich bessere Anpassung bietet.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Das folgende Schritt-f\u00fcr-Schritt-Beispiel zeigt, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 1: Daten laden<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">In diesem Beispiel zeigen wir, wie die folgenden zwei Regressionsmodelle in Python mithilfe von Daten aus dem <strong>mtcars-<\/strong> Datensatz angepasst werden:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Vollst\u00e4ndiges Modell:<\/strong> mpg = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> verf\u00fcgbar + \u03b2 <sub>2<\/sub> Vergaser + \u03b2 <sub>3<\/sub> PS + \u03b2 <sub>4<\/sub> Zyl<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Modell:<\/strong> mpg = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> verf\u00fcgbar + \u03b2 <sub>2<\/sub> Kohlenhydrate<\/span><\/p>\n<p> <span style=\"color: #000000;\">Zuerst laden wir den Datensatz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">from<\/span> sklearn. <span style=\"color: #3366ff;\">linear_model<\/span> <span style=\"color: #008000;\">import<\/span> LinearRegression\n<span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n<span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd\n<span style=\"color: #008000;\">import<\/span> scipy\n\n<span style=\"color: #008080;\">#define URL where dataset is located\n<\/span>url = \"https:\/\/raw.githubusercontent.com\/Statorials\/Python-Guides\/main\/mtcars.csv\"\n\n<span style=\"color: #008080;\">#read in data\n<\/span>data = pd. <span style=\"color: #3366ff;\">read_csv<\/span> (url)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Verwandte Themen:<\/strong> <a href=\"https:\/\/statorials.org\/de\/pandas-lesen-csv\/\" target=\"_blank\" rel=\"noopener\">So lesen Sie CSV-Dateien mit Pandas<\/a><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 2: Passen Sie die Regressionsmodelle an<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Zuerst passen wir das vollst\u00e4ndige Modell an und berechnen die Log-Likelihood des Modells:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define response variable\n<\/span>y1 = data['mpg']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x1 = data[['disp', 'carb', 'hp', 'cyl']]\n\n<span style=\"color: #008080;\">#add constant to predictor variables\n<\/span>x1 = sm. <span style=\"color: #3366ff;\">add_constant<\/span> (x1)\n\n<span style=\"color: #008080;\">#fit regression model\n<\/span>full_model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y1,x1). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #008080;\">#calculate log-likelihood of model\n<\/span>full_ll = full_model. <span style=\"color: #3366ff;\">llf\n<\/span>\n<span style=\"color: #008000;\">print<\/span> (full_ll)\n\n-77.55789711787898\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Als n\u00e4chstes passen wir das reduzierte Modell an und berechnen die Log-Likelihood des Modells:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define response variable\n<\/span>y2 = data['mpg']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x2 = data[['disp', 'carb']]\n\n<span style=\"color: #008080;\">#add constant to predictor variables\n<\/span>x2 = sm. <span style=\"color: #3366ff;\">add_constant<\/span> (x2)\n\n<span style=\"color: #008080;\">#fit regression model\n<\/span>reduced_model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y2, x2). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #008080;\">#calculate log-likelihood of model\n<\/span>reduced_ll = reduced_model. <span style=\"color: #3366ff;\">llf\n<\/span>\n<span style=\"color: #008000;\">print<\/span> (reduced_ll)\n\n-78.60301334355185\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Schritt 3: F\u00fchren Sie den Log-Likelihood-Test durch<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Als n\u00e4chstes verwenden wir den folgenden Code, um den Plausibilit\u00e4tstest durchzuf\u00fchren:<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#calculate likelihood ratio Chi-Squared test statistic<\/span>\nLR_statistic = -2 <span style=\"color: #800080;\">*<\/span> (reduced_ll-full_ll)\n\n<span style=\"color: #008000;\">print<\/span> (LR_statistic)\n\n2.0902324513457415\n\n<span style=\"color: #008080;\">#calculate p-value of test statistic using 2 degrees of freedom\n<\/span>p_val = scipy. <span style=\"color: #3366ff;\">stats<\/span> . <span style=\"color: #3366ff;\">chi2<\/span> . <span style=\"color: #3366ff;\">sf<\/span> (LR_statistic, 2)\n\n<span style=\"color: #008000;\">print<\/span> (p_val)\n\n0.35165094613502257\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Aus dem Ergebnis k\u00f6nnen wir ersehen, dass die Chi-Quadrat-Teststatistik <strong>2,0902<\/strong> und der<\/span> <span style=\"color: #000000;\">entsprechende p-Wert <strong>0,3517<\/strong> betr\u00e4gt.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Da dieser p-Wert nicht kleiner als 0,05 ist, k\u00f6nnen wir die Nullhypothese nicht ablehnen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Dies bedeutet, dass das vollst\u00e4ndige Modell und das verschachtelte Modell gleich gut zu den Daten passen. Wir m\u00fcssen daher das verschachtelte Modell verwenden, da die zus\u00e4tzlichen Pr\u00e4diktorvariablen im vollst\u00e4ndigen Modell keine signifikante Verbesserung der Anpassung bewirken.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Unser endg\u00fcltiges Modell w\u00e4re also:<\/span><\/p>\n<p> <span style=\"color: #000000;\">mpg = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> verf\u00fcgbar + \u03b2 <sub>2<\/sub> Kohlenhydrate<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Hinweis<\/strong> : Bei der Berechnung des p-Werts haben wir zwei Freiheitsgrade verwendet, da dies den Unterschied in den gesamten verwendeten Pr\u00e4diktorvariablen zwischen den beiden Modellen darstellt.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Die folgenden Tutorials bieten zus\u00e4tzliche Informationen zur Verwendung von Regressionsmodellen in Python:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/de\/lineare-regressionspython\/\" target=\"_blank\" rel=\"noopener\">Eine vollst\u00e4ndige Anleitung zur linearen Regression in Python<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/polynomregression-python\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie eine Polynomregression in Python durch<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/logistische-regressionspython\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie eine logistische Regression in Python durch<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ein Likelihood-Ratio-Test vergleicht die Anpassungsg\u00fcte zweier verschachtelter Regressionsmodelle . Ein verschachteltes Modell ist einfach ein Modell, das eine Teilmenge von Pr\u00e4diktorvariablen im gesamten Regressionsmodell enth\u00e4lt. Angenommen, wir haben das folgende Regressionsmodell mit vier Pr\u00e4diktorvariablen: Y = \u03b2 0 + \u03b2 1 x 1 + \u03b2 2 x 2 + \u03b2 3 x 3 + \u03b2 [&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>So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.\" \/>\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\/likelihood-ratio-test-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T03:00:29+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=\"3 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/\",\"url\":\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/\",\"name\":\"So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-22T03:00:29+00:00\",\"dateModified\":\"2023-07-22T03:00:29+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So f\u00fchren sie einen likelihood-ratio-test in python durch\"}]},{\"@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":"So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials","description":"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.","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\/likelihood-ratio-test-in-python\/","og_locale":"de_DE","og_type":"article","og_title":"So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials","og_description":"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.","og_url":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/","og_site_name":"Statorials","article_published_time":"2023-07-22T03:00:29+00:00","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\/likelihood-ratio-test-in-python\/","url":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/","name":"So f\u00fchren Sie einen Likelihood-Ratio-Test in Python durch \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-22T03:00:29+00:00","dateModified":"2023-07-22T03:00:29+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand eines vollst\u00e4ndigen Beispiels erl\u00e4utert, wie Sie einen Likelihood-Ratio-Test in Python durchf\u00fchren.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/likelihood-ratio-test-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So f\u00fchren sie einen likelihood-ratio-test in python durch"}]},{"@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\/2472"}],"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=2472"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2472\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2472"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}