{"id":3646,"date":"2023-07-16T09:02:24","date_gmt":"2023-07-16T09:02:24","guid":{"rendered":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/"},"modified":"2023-07-16T09:02:24","modified_gmt":"2023-07-16T09:02:24","slug":"compressiefunctie-voor-luchtsluis","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/","title":{"rendered":"Hoe de compress-functie in sas te gebruiken (met voorbeelden)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de <b>COMPRESS-<\/b> functie in SAS gebruiken om specifieke tekens uit een tekenreeks te verwijderen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Deze functie gebruikt de volgende basissyntaxis:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>COMPRESS(String, te verwijderen tekens)<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Goud:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>Tekenreeks<\/strong> : de tekenreeks die moet worden geparseerd<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>tekens om te verwijderen<\/strong> : een of meer specifieke tekens die uit de tekenreeks moeten worden verwijderd<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Dit zijn de vier meest voorkomende manieren om deze functie te gebruiken:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Methode 1: Verwijder alle spaties uit de string<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_string = <span style=\"color: #3366ff;\">compress<\/span> (string_variable);\n<span style=\"color: #800080;\">run<\/span> ;\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 2: Verwijder specifieke tekens uit de tekenreeks<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_string = <span style=\"color: #3366ff;\">compress<\/span> (string_variable, ' <span style=\"color: #800080;\">!?@#<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 3: Verwijder alle alfabetische tekens uit de string<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_string = <span style=\"color: #3366ff;\">compress<\/span> (string_variable, '', ' <span style=\"color: #800080;\">a<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Methode 4: Verwijder alle numerieke waarden uit de string<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_string = <span style=\"color: #3366ff;\">compress<\/span> (string_variable, '', ' <span style=\"color: #800080;\">d<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u elke methode kunt gebruiken met de volgende gegevensset in SAS:<\/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> name $25.;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nAndy Lincoln4 Bernard!\nBarren Michael55 Smith!\nChad Simpson7 Arnolds?\nDerrick Parson2 Henry\nEric Miller2 Johansen!\nFrank Giovanni5 Goode\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-29920 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser1.jpg\" alt=\"\" width=\"219\" height=\"186\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 1: Verwijder alle spaties uit de tekenreeks<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u alle lege spaties uit elke tekenreeks in de <strong>naamkolom<\/strong> verwijdert:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*remove blank spaces from each string in name column*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_name = <span style=\"color: #3366ff;\">compress<\/span> (name);\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view results*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-29922 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser2.jpg\" alt=\"\" width=\"399\" height=\"203\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Houd er rekening mee dat alle lege spaties zijn verwijderd uit elke tekenreeks in de nieuwe kolom genaamd <b>tablet_name<\/b> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 2: Verwijder specifieke tekens uit de tekenreeks<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u alle vraag- en uitroeptekens uit elke tekenreeks in de <strong>naamkolom<\/strong> verwijdert:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*remove question marks and exclamation points from each string in name column*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_name = <span style=\"color: #3366ff;\">compress<\/span> (name, ' <span style=\"color: #800080;\">?!<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view results*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-29923 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser3.jpg\" alt=\"\" width=\"398\" height=\"201\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Houd er rekening mee dat alle vraag- en uitroeptekens zijn verwijderd uit elke tekenreeks in de nieuwe kolom genaamd <b>tablet_name<\/b> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 3: Verwijder alle alfabetische tekens uit de tekenreeks<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u alle alfabetische tekens uit elke tekenreeks in de <strong>naamkolom<\/strong> verwijdert:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*remove all alphabetical characters from each string in name column*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_name = <span style=\"color: #3366ff;\">compress<\/span> (name, '', ' <span style=\"color: #800080;\">a<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view results*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-29924 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser4.jpg\" alt=\"\" width=\"384\" height=\"202\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Houd er rekening mee dat alle alfabetische tekens zijn verwijderd uit elke tekenreeks in de nieuwe kolom genaamd <b>tablet_name<\/b> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld 4: Verwijder alle numerieke waarden uit de string<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u alle numerieke waarden uit elke tekenreeks in de <strong>naamkolom<\/strong> verwijdert:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\"><span style=\"color: #008000;\">\/*remove all numeric values from each string in name column*\/<\/span>\ndata<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    compressed_name = <span style=\"color: #3366ff;\">compress<\/span> (name, '', ' <span style=\"color: #800080;\">d<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view results*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-29925 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser5.jpg\" alt=\"\" width=\"397\" height=\"208\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Houd er rekening mee dat alle numerieke waarden zijn verwijderd uit elke tekenreeks in de nieuwe kolom genaamd <b>tabletnaam<\/b> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">In de volgende zelfstudies wordt uitgelegd hoe u andere veelvoorkomende taken in SAS kunt uitvoeren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/onder-luchtsluisfunctie\/\" target=\"_blank\" rel=\"noopener\">Hoe de SUBSTR-functie in SAS te gebruiken<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/sas-zoekfunctie\/\" target=\"_blank\" rel=\"noopener\">Hoe de FIND-functie in SAS te gebruiken<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/niet-samenvoegen\/\" target=\"_blank\" rel=\"noopener\">Hoe de COALESCE-functie in SAS te gebruiken<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de COMPRESS- functie in SAS gebruiken om specifieke tekens uit een tekenreeks te verwijderen. Deze functie gebruikt de volgende basissyntaxis: COMPRESS(String, te verwijderen tekens) Goud: Tekenreeks : de tekenreeks die moet worden geparseerd tekens om te verwijderen : een of meer specifieke tekens die uit de tekenreeks moeten worden verwijderd Dit zijn de [&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":[],"class_list":["post-3646","post","type-post","status-publish","format-standard","hentry","category-gids"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.\" \/>\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\/nl\/compressiefunctie-voor-luchtsluis\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-16T09:02:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser1.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\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/\",\"url\":\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/\",\"name\":\"Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-16T09:02:24+00:00\",\"dateModified\":\"2023-07-16T09:02:24+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe de compress-functie in sas te gebruiken (met voorbeelden)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/nl\/#website\",\"url\":\"https:\/\/statorials.org\/nl\/\",\"name\":\"Statorials\",\"description\":\"Uw gids voor statistische competentie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/nl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder\",\"sameAs\":[\"http:\/\/statorials.org\/nl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials","description":"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.","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\/nl\/compressiefunctie-voor-luchtsluis\/","og_locale":"de_DE","og_type":"article","og_title":"Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials","og_description":"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.","og_url":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/","og_site_name":"Statorials","article_published_time":"2023-07-16T09:02:24+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/compresser1.jpg"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/","url":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/","name":"Hoe de COMPRESS-functie in SAS te gebruiken (met voorbeelden) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-16T09:02:24+00:00","dateModified":"2023-07-16T09:02:24+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt uitgelegd hoe u de COMPRESS-functie in SAS gebruikt, met verschillende voorbeelden.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/compressiefunctie-voor-luchtsluis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe de compress-functie in sas te gebruiken (met voorbeelden)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/nl\/#website","url":"https:\/\/statorials.org\/nl\/","name":"Statorials","description":"Uw gids voor statistische competentie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/nl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder","sameAs":["http:\/\/statorials.org\/nl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/3646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/comments?post=3646"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/3646\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=3646"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=3646"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=3646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}