{"id":2243,"date":"2023-07-23T02:52:08","date_gmt":"2023-07-23T02:52:08","guid":{"rendered":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/"},"modified":"2023-07-23T02:52:08","modified_gmt":"2023-07-23T02:52:08","slug":"nulhypothese-van-logistische-regressie","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/","title":{"rendered":"De nulhypothese voor logistieke regressie begrijpen"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/nl\/logistische-regressie-1\/\" target=\"_blank\" rel=\"noopener\">Logistische regressie<\/a> is een type regressiemodel dat we kunnen gebruiken om de relatie tussen een of meer voorspellende variabelen en een<a href=\"https:\/\/statorials.org\/nl\/variabelen-verklarende-reacties\/\" target=\"_blank\" rel=\"noopener\">responsvariabele<\/a> te begrijpen wanneer de responsvariabele binair is.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Als we slechts \u00e9\u00e9n voorspellende variabele en \u00e9\u00e9n responsvariabele hebben, kunnen we <strong>eenvoudige logistische regressie<\/strong> gebruiken, waarbij de volgende formule wordt gebruikt om de relatie tussen de variabelen te schatten:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>log[p(X) \/ (1-p(X))] = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub><\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">De formule aan de rechterkant van de vergelijking voorspelt de logaritme van de kans dat de responsvariabele de waarde 1 aanneemt.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Eenvoudige logistische regressie maakt gebruik van de volgende nul- en alternatieve hypothesen:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong><sub>H0<\/sub> :<\/strong> <sub>\u03b21<\/sub> = 0<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong><sub>HA<\/sub> :<\/strong> \u03b2 <sub>1<\/sub> \u2260 0<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">De nulhypothese stelt dat de co\u00ebffici\u00ebnt \u03b2 <sub>1<\/sub> gelijk is aan nul. Met andere woorden: er is geen statistisch significante relatie tussen de voorspellende variabele x en de responsvariabele y.<\/span><\/p>\n<p> <span style=\"color: #000000;\">De alternatieve hypothese stelt dat \u03b2 <sub>1<\/sub> <em>niet<\/em> gelijk is aan nul. Met andere woorden: er <em>is<\/em> een statistisch significante relatie tussen x en y.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Als we meerdere voorspellende variabelen en een responsvariabele hebben, kunnen we <strong>meerdere logistische regressie<\/strong> gebruiken, waarbij de volgende formule wordt gebruikt om de relatie tussen de variabelen te schatten:<\/span><\/p>\n<p> <strong><span style=\"color: #000000;\">log[p(X) \/ (1-p(X))] = \u03b2 <sub>0<\/sub> + \u03b2 <sub>1<\/sub> x <sub>1<\/sub> + \u03b2 <sub>2<\/sub> x <sub>2<\/sub> + \u2026 + \u03b2 <sub>k<\/sub> x <sub>k<\/sub><\/span><\/strong><\/p>\n<p> <span style=\"color: #000000;\">Bij meervoudige logistische regressie worden de volgende nul- en alternatieve hypothesen gebruikt:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> :<\/strong> \u03b2 <sub>1<\/sub> = \u03b2 <sub>2<\/sub> = \u2026 = \u03b2 <sub>k<\/sub> = 0<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>H <sub>A<\/sub> :<\/strong> \u03b2 <sub>1<\/sub> = \u03b2 <sub>2<\/sub> = \u2026 = \u03b2 <sub>k<\/sub> \u2260 0<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">De nulhypothese stelt dat alle co\u00ebffici\u00ebnten in het model gelijk zijn aan nul. Met andere woorden: geen van de voorspellende variabelen heeft een statistisch significante relatie met de responsvariabele y.<\/span><\/p>\n<p> <span style=\"color: #000000;\">De alternatieve hypothese stelt dat niet alle co\u00ebffici\u00ebnten tegelijkertijd gelijk zijn aan nul.<\/span><\/p>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u kunt beslissen of u de nulhypothese wel of niet verwerpt in eenvoudige logistieke regressie- en meervoudige logistische regressiemodellen.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Voorbeeld 1: eenvoudige logistische regressie<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Stel dat een hoogleraar het aantal gestudeerde uren wil gebruiken om te voorspellen welk examencijfer studenten in zijn klas zullen behalen. Het verzamelt gegevens van twintig studenten en past in een eenvoudig logistisch regressiemodel.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen de volgende code in R gebruiken om een eenvoudig logistisch regressiemodel te passen:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#createdata\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (result=c(0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1),\n                 hours=c(1, 5, 5, 1, 2, 1, 3, 2, 2, 1, 2, 1, 3, 4, 4, 2, 1, 1, 4, 3))\n\n<span style=\"color: #008080;\">#fit simple logistic regression model\n<\/span>model &lt;- glm(result~hours, family=' <span style=\"color: #ff0000;\">binomial<\/span> ', data=df)\n\n<span style=\"color: #008080;\">#view summary of model fit\n<\/span>summary(model)\n\nCall:\nglm(formula = result ~ hours, family = \"binomial\", data = df)\n\nDeviance Residuals: \n    Min 1Q Median 3Q Max  \n-1.8244 -1.1738 0.7701 0.9460 1.2236  \n\nCoefficients:\n            Estimate Std. Error z value Pr(&gt;|z|)\n(Intercept) -0.4987 0.9490 -0.526 0.599\nhours 0.3906 0.3714 1.052 0.293\n\n(Dispersion parameter for binomial family taken to be 1)\n\n    Null deviance: 26,920 on 19 degrees of freedom\nResidual deviance: 25,712 on 18 degrees of freedom\nAIC: 29,712\n\nNumber of Fisher Scoring iterations: 4\n\n<span style=\"color: #008080;\">#calculate p-value of overall Chi-Square statistic\n<\/span>1-pchisq(26.920-25.712, 19-18)\n\n[1] 0.2717286\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Om te bepalen of er een statistisch significante relatie bestaat tussen het aantal gestudeerde uren en de examenscore, moeten we de algehele chikwadraatwaarde van het model en de bijbehorende p-waarde analyseren.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen de volgende formule gebruiken om de totale chikwadraatwaarde van het model te berekenen:<\/span><\/p>\n<p> <span style=\"color: #000000;\">X <sup>2<\/sup> = (nul afwijking \u2013 resterende afwijking) \/ (nul Df \u2013 resterende Df)<\/span><\/p>\n<p> <span style=\"color: #000000;\">De p-waarde blijkt <strong>0,2717286<\/strong> te zijn.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Omdat deze p-waarde niet kleiner is dan 0,05, slagen we er niet in de nulhypothese te verwerpen. Met andere woorden: er is geen statistisch significante relatie tussen het aantal gestudeerde uren en de examenscores.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Voorbeeld 2: Meervoudige logistische regressie<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Stel dat een professor het aantal gestudeerde uren en het aantal afgelegde voorbereidende examens wil gebruiken om te voorspellen welk cijfer studenten in zijn klas zullen behalen. Het verzamelt gegevens van 20 studenten en past in een meervoudig logistisch regressiemodel.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen de volgende code in R gebruiken om een meervoudig logistisch regressiemodel te passen:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#create data\n<\/span>df &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (result=c(0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1),\n                 hours=c(1, 5, 5, 1, 2, 1, 3, 2, 2, 1, 2, 1, 3, 4, 4, 2, 1, 1, 4, 3),\n                 exams=c(1, 2, 2, 1, 2, 1, 1, 3, 2, 4, 3, 2, 2, 4, 4, 5, 4, 4, 3, 5))\n\n<span style=\"color: #008080;\">#fit simple logistic regression model\n<\/span>model &lt;- glm(result~hours+exams, family=' <span style=\"color: #ff0000;\">binomial<\/span> ', data=df)\n\n<span style=\"color: #008080;\">#view summary of model fit\n<\/span>summary(model)\n\nCall:\nglm(formula = result ~ hours + exams, family = \"binomial\", data = df)\n\nDeviance Residuals: \n    Min 1Q Median 3Q Max  \n-1.5061 -0.6395 0.3347 0.6300 1.7014  \n\nCoefficients:\n            Estimate Std. Error z value Pr(&gt;|z|)  \n(Intercept) -3.4873 1.8557 -1.879 0.0602 .\nhours 0.3844 0.4145 0.927 0.3538  \nexams 1.1549 0.5493 2.103 0.0355 *\n---\nSignificant. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1\n\n(Dispersion parameter for binomial family taken to be 1)\n\n    Null deviance: 26,920 on 19 degrees of freedom\nResidual deviance: 19,067 on 17 degrees of freedom\nAIC: 25,067\n\nNumber of Fisher Scoring iterations: 5\n\n<span style=\"color: #008080;\">#calculate p-value of overall Chi-Square statistic\n<\/span>1-pchisq(26.920-19.067, 19-17)\n\n[1] 0.01971255\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">De p-waarde voor de algehele chikwadraatstatistiek van het model blijkt <strong>0,01971255<\/strong> te zijn.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Omdat deze p-waarde kleiner is dan 0,05, verwerpen we de nulhypothese. Er bestaat met andere woorden een statistisch significante relatie tussen de combinatie van gestudeerde uren en afgelegde voorbereidende examens en het op het examen behaalde eindcijfer.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">De volgende tutorials bieden aanvullende informatie over logistische regressie:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/logistische-regressie-1\/\" target=\"_blank\" rel=\"noopener\">Inleiding tot logistieke regressie<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/hoe-logistische-regressieresultaten-te-rapporteren\/\" target=\"_blank\" rel=\"noopener\">Hoe logistieke regressieresultaten te rapporteren<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/logistische-regressie-versus-lineaire-regressie\/\" target=\"_blank\" rel=\"noopener\">Logistische regressie versus lineaire regressie: de belangrijkste verschillen<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Logistische regressie is een type regressiemodel dat we kunnen gebruiken om de relatie tussen een of meer voorspellende variabelen en eenresponsvariabele te begrijpen wanneer de responsvariabele binair is. Als we slechts \u00e9\u00e9n voorspellende variabele en \u00e9\u00e9n responsvariabele hebben, kunnen we eenvoudige logistische regressie gebruiken, waarbij de volgende formule wordt gebruikt om de relatie tussen 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-2243","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>De nulhypothese voor logistieke regressie begrijpen - Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, 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\/nulhypothese-van-logistische-regressie\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"De nulhypothese voor logistieke regressie begrijpen - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, met verschillende voorbeelden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-23T02:52:08+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=\"4\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/\",\"url\":\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/\",\"name\":\"De nulhypothese voor logistieke regressie begrijpen - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-23T02:52:08+00:00\",\"dateModified\":\"2023-07-23T02:52:08+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, met verschillende voorbeelden.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"De nulhypothese voor logistieke regressie begrijpen\"}]},{\"@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":"De nulhypothese voor logistieke regressie begrijpen - Statorials","description":"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, 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\/nulhypothese-van-logistische-regressie\/","og_locale":"de_DE","og_type":"article","og_title":"De nulhypothese voor logistieke regressie begrijpen - Statorials","og_description":"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, met verschillende voorbeelden.","og_url":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/","og_site_name":"Statorials","article_published_time":"2023-07-23T02:52:08+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"4\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/","url":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/","name":"De nulhypothese voor logistieke regressie begrijpen - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-23T02:52:08+00:00","dateModified":"2023-07-23T02:52:08+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt de nulhypothese voor logistische regressie uitgelegd, met verschillende voorbeelden.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/nulhypothese-van-logistische-regressie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"De nulhypothese voor logistieke regressie begrijpen"}]},{"@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\/2243","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=2243"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2243\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=2243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=2243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=2243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}