{"id":2662,"date":"2023-07-21T06:56:19","date_gmt":"2023-07-21T06:56:19","guid":{"rendered":"https:\/\/statorials.org\/de\/kpss-test-in-python\/"},"modified":"2023-07-21T06:56:19","modified_gmt":"2023-07-21T06:56:19","slug":"kpss-test-in-python","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/kpss-test-in-python\/","title":{"rendered":"So f\u00fchren sie einen kpss-test in python durch"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Mit einem <strong>KPSS-Test<\/strong> kann festgestellt werden, ob eine Zeitreihe einen station\u00e4ren Trend aufweist.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Dieser Test verwendet die folgende Null- und Alternativhypothese:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub><\/strong> : Die Zeitreihe hat einen station\u00e4ren Trend.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>H <sub>A<\/sub><\/strong> : Die Zeitreihe <em>weist keinen<\/em> station\u00e4ren Trend auf.<\/span><\/li>\n<\/ul>\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. \u03b1 = 0,05), lehnen wir die Nullhypothese ab und kommen zu dem Schluss, dass die Zeitreihe keinen station\u00e4ren Trend aufweist.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Andernfalls k\u00f6nnen wir die Nullhypothese nicht ablehnen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele zeigen, wie Sie einen KPSS-Test in Python durchf\u00fchren.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 1: KPSS-Test in Python (mit station\u00e4ren Daten)<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Lassen Sie uns zun\u00e4chst einige gef\u00e4lschte Daten in Python erstellen, mit denen wir arbeiten k\u00f6nnen:<\/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<\/span>\n<span style=\"color: #000000;\"><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;\">#make this example reproducible\n<\/span>n.p. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">seed<\/span> ( <span style=\"color: #008000;\">1<\/span> )\n\n<span style=\"color: #008080;\">#create time series data\n<\/span>data = np. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">normal<\/span> (size= <span style=\"color: #008000;\">100<\/span> )\n\n<span style=\"color: #008080;\">#create line plot of time series data\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (data)<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23462 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kpss3.jpg\" alt=\"\" width=\"524\" height=\"351\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die Funktion <strong>kpss()<\/strong> aus dem Paket <b>statsmodels<\/b> verwenden, um einen KPSS-Test f\u00fcr diese Zeitreihendaten durchzuf\u00fchren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n\n<span style=\"color: #008080;\">#perform KPSS test\n<\/span>sm. <span style=\"color: #3366ff;\">tsa<\/span> . <span style=\"color: #3366ff;\">stattools<\/span> . <span style=\"color: #3366ff;\">kpss<\/span> (data, regression=' <span style=\"color: #ff0000;\">ct<\/span> ')\n\n(0.0477617848370993,\n 0.1,\n 1,\n {'10%': 0.119, '5%': 0.146, '2.5%': 0.176, '1%': 0.216})\n\nInterpolationWarning: The test statistic is outside of the range of p-values available\nin the look-up table. The actual p-value is greater than the p-value returned.\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">So interpretieren Sie das Ergebnis:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Die KPSS-Teststatistik: <strong>0,04776<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Der p-Wert: <strong>0,1<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Der K\u00fcrzungsoffset-Parameter: <strong>1<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Kritische Werte bei <strong>10 %<\/strong> , <strong>5 %<\/strong> , <strong>2,5 %<\/strong> und <strong>1 %<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Der p-Wert betr\u00e4gt <strong>0,1<\/strong> . Da dieser Wert nicht kleiner als 0,05 ist, k\u00f6nnen wir die Nullhypothese des KPSS-Tests nicht ablehnen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Das bedeutet, dass wir davon ausgehen k\u00f6nnen, dass die Zeitreihe einen station\u00e4ren Trend aufweist.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Hinweis 1<\/strong> : Der p-Wert ist tats\u00e4chlich immer noch gr\u00f6\u00dfer als 0,1, aber der niedrigste Wert, den die Funktion kpss() erzeugt, ist 0,1.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Hinweis 2<\/strong> : Sie m\u00fcssen das Argument <strong>regression=&#8217;ct&#8216;<\/strong> verwenden, um anzugeben, dass die Nullhypothese des Tests darin besteht, dass die Daten einen station\u00e4ren Trend aufweisen.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 2: KPSS-Test in Python (mit instation\u00e4ren Daten)<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Lassen Sie uns zun\u00e4chst einige gef\u00e4lschte Daten in Python erstellen, mit denen wir arbeiten k\u00f6nnen:<\/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<\/span>\n<span style=\"color: #000000;\"><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;\">#make this example reproducible\n<\/span>n.p. <span style=\"color: #3366ff;\">random<\/span> . <span style=\"color: #3366ff;\">seed<\/span> ( <span style=\"color: #008000;\">1<\/span> )\n\n<span style=\"color: #008080;\">#create time series data\n<\/span>data =np. <span style=\"color: #3366ff;\">array<\/span> ([0, 3, 4, 3, 6, 7, 5, 8, 15, 13, 19, 12, 29, 15, 45, 23, 67, 45])\n\n<span style=\"color: #008080;\">#create line plot of time series data\n<\/span>plt. <span style=\"color: #3366ff;\">plot<\/span> (data)<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23463 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kpss4.jpg\" alt=\"\" width=\"525\" height=\"350\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Auch hier k\u00f6nnen wir die Funktion <strong>kpss()<\/strong> aus dem <b>statsmodels-<\/b> Paket verwenden, um einen KPSS-Test f\u00fcr diese Zeitreihendaten durchzuf\u00fchren:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n\n<span style=\"color: #008080;\">#perform KPSS test\n<\/span>sm. <span style=\"color: #3366ff;\">tsa<\/span> . <span style=\"color: #3366ff;\">stattools<\/span> . <span style=\"color: #3366ff;\">kpss<\/span> (data, regression=' <span style=\"color: #ff0000;\">ct<\/span> ')\n\n(0.15096358910843685,\n 0.04586367574296928,\n 3,\n {'10%': 0.119, '5%': 0.146, '2.5%': 0.176, '1%': 0.216})\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">So interpretieren Sie das Ergebnis:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Die KPSS-Teststatistik: <strong>0,1509<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Der p-Wert: <strong>0,0458<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Der K\u00fcrzungsoffset-Parameter: <strong>3<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">Kritische Werte bei <strong>10 %<\/strong> , <strong>5 %<\/strong> , <strong>2,5 %<\/strong> und <strong>1 %<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Der p-Wert betr\u00e4gt <strong>0,0458<\/strong> . Da dieser Wert kleiner als 0,05 ist, lehnen wir die Nullhypothese des KPSS-Tests ab.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Dies bedeutet, dass die Zeitreihe <em>nicht station\u00e4r ist<\/em> .<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Hinweis<\/strong> : Die vollst\u00e4ndige Dokumentation f\u00fcr die Funktion kpss() aus dem Paket statsmodels finden Sie <a href=\"https:\/\/www.statsmodels.org\/stable\/generated\/statsmodels.tsa.stattools.kpss.html\" target=\"_blank\" rel=\"noopener\">hier<\/a> .<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><span style=\"color: #000000;\"><br \/><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Die folgenden Tutorials bieten zus\u00e4tzliche Informationen zum Arbeiten mit Zeitreihendaten in Python:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/de\/dickey-fuller-test-python\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie einen erweiterten Dickey-Fuller-Test in Python durch<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/mann-kendall-testet-python\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie einen Mann-Kendall-Trendtest in Python durch<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/matplotlib-zeitreihe\/\" target=\"_blank\" rel=\"noopener\">So zeichnen Sie eine Zeitreihe in Matplotlib<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mit einem KPSS-Test kann festgestellt werden, ob eine Zeitreihe einen station\u00e4ren Trend aufweist. Dieser Test verwendet die folgende Null- und Alternativhypothese: H 0 : Die Zeitreihe hat einen station\u00e4ren Trend. H A : Die Zeitreihe weist keinen station\u00e4ren Trend auf. Wenn der p-Wert des Tests unter einem bestimmten Signifikanzniveau liegt (z. B. \u03b1 = 0,05), [&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 KPSS-Test in Python durch \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt 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\/kpss-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 KPSS-Test in Python durch \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt wird.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/kpss-test-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T06:56:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kpss3.jpg\" \/>\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\/kpss-test-in-python\/\",\"url\":\"https:\/\/statorials.org\/de\/kpss-test-in-python\/\",\"name\":\"So f\u00fchren Sie einen KPSS-Test in Python durch \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-21T06:56:19+00:00\",\"dateModified\":\"2023-07-21T06:56:19+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt wird.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/kpss-test-in-python\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/kpss-test-in-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/kpss-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 kpss-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 KPSS-Test in Python durch \u2013 Statorials","description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt 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\/kpss-test-in-python\/","og_locale":"de_DE","og_type":"article","og_title":"So f\u00fchren Sie einen KPSS-Test in Python durch \u2013 Statorials","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt wird.","og_url":"https:\/\/statorials.org\/de\/kpss-test-in-python\/","og_site_name":"Statorials","article_published_time":"2023-07-21T06:56:19+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kpss3.jpg"}],"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\/kpss-test-in-python\/","url":"https:\/\/statorials.org\/de\/kpss-test-in-python\/","name":"So f\u00fchren Sie einen KPSS-Test in Python durch \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-21T06:56:19+00:00","dateModified":"2023-07-21T06:56:19+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie ein KPSS-Test in Python durchgef\u00fchrt wird.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/kpss-test-in-python\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/kpss-test-in-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/kpss-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 kpss-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\/2662"}],"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=2662"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2662\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}