{"id":2629,"date":"2023-07-21T10:30:26","date_gmt":"2023-07-21T10:30:26","guid":{"rendered":"https:\/\/statorials.org\/de\/sas-perzentile\/"},"modified":"2023-07-21T10:30:26","modified_gmt":"2023-07-21T10:30:26","slug":"sas-perzentile","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/sas-perzentile\/","title":{"rendered":"So berechnen sie perzentile in sas: mit beispielen"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Hier sind die drei h\u00e4ufigsten Methoden zur Berechnung von Perzentilen f\u00fcr einen Datensatz in SAS:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 1: Berechnen Sie einen bestimmten Perzentilwert<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*calculate 70th percentile value for var1*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> <span style=\"color: #000000;\">=original_data;\n    <\/span><span style=\"color: #3366ff;\">var<\/span> <span style=\"color: #000000;\">var1;\n    <\/span><span style=\"color: #3366ff;\">output out<\/span> <span style=\"color: #000000;\">=percentile_data\n<\/span><span style=\"color: #3366ff;\">pctlpts<\/span> <span style=\"color: #000000;\">=<\/span> <span style=\"color: #008000;\">70<\/span>\n    <span style=\"color: #3366ff;\">pctlpre<\/span> <span style=\"color: #000000;\">= P_;\n<\/span><span style=\"color: #800080;\">run<\/span> <span style=\"color: #000000;\">;\n<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 2: Berechnen Sie mehrere spezifische Perzentilwerte<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*calculate 70th, 80th, and 90th percentile value for var1*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =original_data;\n    <span style=\"color: #3366ff;\">var<\/span> var1;\n    <span style=\"color: #3366ff;\">output out<\/span> =percentile_data\n    <span style=\"color: #3366ff;\">pctlpts<\/span> = <span style=\"color: #008000;\">70 80 90<\/span>\n    <span style=\"color: #3366ff;\">pctlpre<\/span> = P_;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 3: Perzentile nach Gruppe berechnen<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*sort original data by var2*\/\n<\/span><span style=\"color: #800080;\">proc sort<\/span> <span style=\"color: #3366ff;\">data<\/span> = original_data;\n    <span style=\"color: #3366ff;\">by<\/span> var2;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*calculate percentiles for var1 grouped by var2*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =original_data;\n    <span style=\"color: #3366ff;\">var<\/span> var1;\n    <span style=\"color: #3366ff;\">by<\/span> var2;\n    <span style=\"color: #3366ff;\">output<\/span> <span style=\"color: #3366ff;\">out<\/span> =percentile_data\n    <span style=\"color: #3366ff;\">pctlpts<\/span> = 70, 80, 90\n    <span style=\"color: #3366ff;\">pctlpre<\/span> = P_;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Hinweis<\/strong> : Die <strong>pctlpts-<\/strong> Anweisung gibt die zu berechnenden Perzentile an, und die <strong>pctlpre-<\/strong> Anweisung gibt das Pr\u00e4fix an, das f\u00fcr die Perzentile in der Ausgabe verwendet werden soll.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele zeigen, wie jede Methode mit dem folgenden Datensatz in SAS verwendet wird:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*create dataset*\/\n<span style=\"color: #000000;\"><span style=\"color: #800080;\">data<\/span> original_data;\n    <span style=\"color: #3366ff;\">input<\/span> team $points;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nAT 12\nAt 15\nAt 16\nAt 21\nAt 22\nAt 25\nAt 29\nAt 31\nB16\nB22\nB25\nB29\nB 30\nB 31\nB 33\nB 38\n;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view dataset*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = original_data;<\/span><\/span><\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23205 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pourcentage0.jpg\" alt=\"\" width=\"143\" height=\"404\" srcset=\"\" sizes=\"\"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 1: Berechnen Sie einen bestimmten Perzentilwert<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt, wie das 70. Perzentil f\u00fcr die <strong>Punktevariable<\/strong> berechnet wird:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*calculate 70th percentile value for points*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =original_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n    <span style=\"color: #3366ff;\">output out<\/span> =percentile_data\n    <span style=\"color: #3366ff;\">pctlpts<\/span> = <span style=\"color: #008000;\">70<\/span>\n    <span style=\"color: #3366ff;\">pctlpre<\/span> = P_;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view results*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =percentile_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23206 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pour-cent11.jpg\" alt=\"\" width=\"92\" height=\"54\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Der Wert beim 70. Perzentil betr\u00e4gt <strong>30<\/strong> .<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 2: Berechnen Sie mehrere spezifische Perzentilwerte<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt, wie die 70., 80. und 90. Perzentilwerte f\u00fcr die <strong>Punktevariable<\/strong> berechnet werden:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*calculate 70th, 80th, and 90th percentile value for points*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =original_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n    <span style=\"color: #3366ff;\">output out<\/span> =percentile_data\n    <span style=\"color: #3366ff;\">pctlpts<\/span> = <span style=\"color: #008000;\">70 80 90<\/span>\n    <span style=\"color: #3366ff;\">pctlpre<\/span> = P_;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23207 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pour-cent12.jpg\" alt=\"\" width=\"180\" height=\"59\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">So interpretieren Sie das Ergebnis:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Der Wert beim 70. Perzentil betr\u00e4gt <strong>30<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\">Der Wert beim 80. Perzentil betr\u00e4gt <strong>31<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\">Der 90. Perzentilwert betr\u00e4gt <strong>33<\/strong> .<\/span><\/li>\n<\/ul>\n<h3> <span style=\"color: #000000;\"><strong>Beispiel 3: Perzentile nach Gruppe berechnen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Der folgende Code zeigt, wie die Werte am 70., 80., 90. und 95. Perzentil f\u00fcr die <strong>Punktevariable<\/strong> , gruppiert nach der <strong>Teamvariable<\/strong> , berechnet werden:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*sort original data by team*\/\n<\/span><span style=\"color: #800080;\">proc sort<\/span> <span style=\"color: #3366ff;\">data<\/span> = original_data;\n    <span style=\"color: #3366ff;\">by<\/span> team;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*calculate percentiles for points grouped by team*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =original_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n    <span style=\"color: #3366ff;\">by<\/span> team;\n    <span style=\"color: #3366ff;\">output<\/span> <span style=\"color: #3366ff;\">out<\/span> =percentile_data\n    <span style=\"color: #3366ff;\">pctlpts<\/span> = <span style=\"color: #008000;\">70<\/span> , <span style=\"color: #008000;\">80<\/span> , <span style=\"color: #008000;\">90<\/span> <span style=\"color: #008000;\">95<\/span>\n    <span style=\"color: #3366ff;\">pctlpre<\/span> = P_;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-23209 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pour-cent13.jpg\" alt=\"\" width=\"284\" height=\"84\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Die Ausgabetabelle zeigt die 70., 80., 90. und 95. Perzentilwerte f\u00fcr die <strong>Punktevariable<\/strong> f\u00fcr die Teams A und B an.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">In den folgenden Tutorials wird erl\u00e4utert, wie Sie andere h\u00e4ufige Aufgaben in SAS ausf\u00fchren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/de\/zusammenfassendes-verfahren-in-sas\/\" target=\"_blank\" rel=\"noopener\">So verwenden Sie die Verfahrenszusammenfassung in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/sas-frequenztabelle\/\" target=\"_blank\" rel=\"noopener\">So erstellen Sie H\u00e4ufigkeitstabellen in SAS<\/a><br \/><a href=\"https:\/\/statorials.org\/de\/korrelation-in-der-luftschleuse\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie die Korrelation in SAS<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hier sind die drei h\u00e4ufigsten Methoden zur Berechnung von Perzentilen f\u00fcr einen Datensatz in SAS: Methode 1: Berechnen Sie einen bestimmten Perzentilwert \/*calculate 70th percentile value for var1*\/ proc univariate data =original_data; var var1; output out =percentile_data pctlpts = 70 pctlpre = P_; run ; Methode 2: Berechnen Sie mehrere spezifische Perzentilwerte \/*calculate 70th, 80th, [&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 berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet 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\/sas-perzentile\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"So berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet werden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/sas-perzentile\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T10:30:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pourcentage0.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=\"2 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/sas-perzentile\/\",\"url\":\"https:\/\/statorials.org\/de\/sas-perzentile\/\",\"name\":\"So berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-21T10:30:26+00:00\",\"dateModified\":\"2023-07-21T10:30:26+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet werden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/sas-perzentile\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/sas-perzentile\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/sas-perzentile\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So berechnen sie perzentile in sas: 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":"So berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik","description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet 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\/sas-perzentile\/","og_locale":"de_DE","og_type":"article","og_title":"So berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet werden.","og_url":"https:\/\/statorials.org\/de\/sas-perzentile\/","og_site_name":"Statorials","article_published_time":"2023-07-21T10:30:26+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/pourcentage0.jpg"}],"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\/sas-perzentile\/","url":"https:\/\/statorials.org\/de\/sas-perzentile\/","name":"So berechnen Sie Perzentile in SAS (mit Beispielen) \u2013 Statistik","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-21T10:30:26+00:00","dateModified":"2023-07-21T10:30:26+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Perzentile f\u00fcr einen Datensatz in SAS berechnet werden.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/sas-perzentile\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/sas-perzentile\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/sas-perzentile\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So berechnen sie perzentile in sas: 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\/2629"}],"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=2629"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/2629\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=2629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=2629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=2629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}