{"id":2960,"date":"2023-07-19T21:48:21","date_gmt":"2023-07-19T21:48:21","guid":{"rendered":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/"},"modified":"2023-07-19T21:48:21","modified_gmt":"2023-07-19T21:48:21","slug":"histogramin-normal-egrisini-rde-ust-uste-getirin","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/","title":{"rendered":"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Genellikle R&#8217;deki bir histogram\u0131n \u00fczerine normal bir e\u011fri yerle\u015ftirmek isteyebilirsiniz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rneklerde R ve <a href=\"https:\/\/ggplot2.tidyverse.org\/\" target=\"_blank\" rel=\"noopener\">ggplot2<\/a> taban\u0131nda bunun nas\u0131l yap\u0131laca\u011f\u0131 g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <strong><span style=\"color: #000000;\">\u00d6rnek 1: normal bir e\u011friyi R taban\u0131 histogram\u0131na bindirme<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">R taban\u0131nda bir histogram olu\u015fturmak ve histogram\u0131n \u00fczerine normal bir e\u011fri yerle\u015ftirmek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#make this example reproducible\n<span style=\"color: #000000;\">set. <span style=\"color: #3366ff;\">seed<\/span> ( <span style=\"color: #008000;\">0<\/span> )<\/span>\n\n#define data<\/span>\ndata &lt;-rnorm( <span style=\"color: #008000;\">1000<\/span> )\n\n<span style=\"color: #008080;\">#create histogram\n<\/span>hist_data &lt;- hist(data)\n\n<span style=\"color: #008080;\">#define x and y values to use for normal curve\n<\/span>x_values &lt;- seq(min(data), max(data), length = <span style=\"color: #008000;\">100<\/span> )\ny_values &lt;- dnorm(x_values, mean = mean(data), sd = sd(data)) \ny_values &lt;- y_values * diff(hist_data$mids[1:2]) * length(data) \n\n<span style=\"color: #008080;\">#overlay normal curve on histogram\n<\/span>lines(x_values, y_values, lwd = <span style=\"color: #008000;\">2<\/span> )\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25665\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superpositionhist1.jpg\" alt=\"normal e\u011friyi R'deki histogram\u0131n \u00fczerine yerle\u015ftirin\" width=\"452\" height=\"461\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Grafikteki siyah e\u011fri normal e\u011friyi temsil eder.<\/span><\/p>\n<p> <span style=\"color: #000000;\">S\u0131ras\u0131yla rengi, geni\u015fli\u011fi ve \u00e7izgi t\u00fcr\u00fcn\u00fc de\u011fi\u015ftirmek i\u00e7in <strong>col<\/strong> , <strong>lwd<\/strong> ve <strong>lty<\/strong> ba\u011f\u0131ms\u0131z de\u011fi\u015fkenlerini kullanmaktan \u00e7ekinmeyin:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#overlay normal curve with custom aesthetics\n<\/span>lines(x_values, y_values, col=' <span style=\"color: #ff0000;\">red<\/span> ', lwd= <span style=\"color: #008000;\">5<\/span> , lty=' <span style=\"color: #ff0000;\">dashed<\/span> ')\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25666 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superpositionhist2.jpg\" alt=\"\" width=\"445\" height=\"456\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <strong><span style=\"color: #000000;\">\u00d6rnek 2: Normal e\u011friyi ggplot2&#8217;deki histogram\u0131n \u00fczerine yerle\u015ftirin<\/span><\/strong><\/h3>\n<p> <span style=\"color: #000000;\">Ggplot2&#8217;de bir histogram olu\u015fturmak ve histogram\u0131n \u00fczerine normal bir e\u011fri yerle\u015ftirmek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">library<\/span> (ggplot2)<\/span>\n\n#make this example reproducible\n<span style=\"color: #000000;\">set. <span style=\"color: #3366ff;\">seed<\/span> ( <span style=\"color: #008000;\">0<\/span> )\n\n<span style=\"color: #008080;\">#define data\n<\/span>data &lt;- data. <span style=\"color: #3366ff;\">frame<\/span> (x=rnorm( <span style=\"color: #008000;\">1000<\/span> ))\n\n<span style=\"color: #008080;\">#create histogram and overlay normal curve\n<\/span>ggplot(data, aes(x)) +\n  geom_histogram(aes(y = ..density..), fill=' <span style=\"color: #ff0000;\">lightgray<\/span> ', col=' <span style=\"color: #ff0000;\">black<\/span> ') +\n  stat_function(fun = dnorm, args = list(mean=mean(data$x), sd=sd(data$x)))\n<\/span><\/span><\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-25667\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superpositionhist3.jpg\" alt=\"R'deki ggplot2'deki histogram kaplamas\u0131\" width=\"482\" height=\"485\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Grafikteki siyah e\u011fri normal e\u011friyi temsil eder.<\/span><\/p>\n<p> <span style=\"color: #000000;\">S\u0131ras\u0131yla rengi, geni\u015fli\u011fi ve \u00e7izgi t\u00fcr\u00fcn\u00fc de\u011fi\u015ftirmek i\u00e7in <strong>col<\/strong> , <strong>lwd<\/strong> ve <b>lty<\/b> ba\u011f\u0131ms\u0131z de\u011fi\u015fkenlerini kullanmaktan \u00e7ekinmeyin:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#overlay normal curve with custom aesthetics\n<\/span>ggplot(data, aes(x)) +\n  geom_histogram(aes(y = ..density..), fill=' <span style=\"color: #ff0000;\">lightgray<\/span> ', col=' <span style=\"color: #ff0000;\">black<\/span> ') +\n  stat_function(fun = dnorm, args = list(mean=mean(data$x), sd=sd(data$x)),\n                col=' <span style=\"color: #ff0000;\">red<\/span> ', lwd= <span style=\"color: #008000;\">2<\/span> , lty=' <span style=\"color: #ff0000;\">dashed<\/span> '))\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-25668 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superposition3.jpg\" alt=\"\" width=\"474\" height=\"468\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : <strong>stat_function&#8217;a<\/strong> ili\u015fkin t\u00fcm belgeleri<a href=\"https:\/\/ggplot2.tidyverse.org\/reference\/geom_function.html\" target=\"_blank\" rel=\"noopener\">burada<\/a> bulabilirsiniz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimlerde R&#8217;de di\u011fer yayg\u0131n i\u015flemlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/bagil-frekans-histogrami-r\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de g\u00f6receli frekans histogram\u0131 nas\u0131l olu\u015fturulur<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/r-histogram-atlar\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de histogram sonlar\u0131 nas\u0131l belirlenir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Genellikle R&#8217;deki bir histogram\u0131n \u00fczerine normal bir e\u011fri yerle\u015ftirmek isteyebilirsiniz. A\u015fa\u011f\u0131daki \u00f6rneklerde R ve ggplot2 taban\u0131nda bunun nas\u0131l yap\u0131laca\u011f\u0131 g\u00f6sterilmektedir. \u00d6rnek 1: normal bir e\u011friyi R taban\u0131 histogram\u0131na bindirme R taban\u0131nda bir histogram olu\u015fturmak ve histogram\u0131n \u00fczerine normal bir e\u011fri yerle\u015ftirmek i\u00e7in a\u015fa\u011f\u0131daki kodu kullanabiliriz: #make this example reproducible set. seed ( 0 ) #define [&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-2960","post","type-post","status-publish","format-standard","hentry","category-rehber"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>R&#039;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde normal e\u011frilerin R&#039;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\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\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde normal e\u011frilerin R&#039;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T21:48:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superpositionhist1.jpg\" \/>\n<meta name=\"author\" content=\"Dr.benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr.benjamin anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\",\"url\":\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\",\"name\":\"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-19T21:48:21+00:00\",\"dateModified\":\"2023-07-19T21:48:21+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde normal e\u011frilerin R&#39;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/tr\/#website\",\"url\":\"https:\/\/statorials.org\/tr\/\",\"name\":\"Statorials\",\"description\":\"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/tr\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"tr\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil\",\"sameAs\":[\"https:\/\/statorials.org\/tr\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller","description":"Bu e\u011fitimde normal e\u011frilerin R&#39;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","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\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller","og_description":"Bu e\u011fitimde normal e\u011frilerin R&#39;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/","og_site_name":"Statorials","article_published_time":"2023-07-19T21:48:21+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/superpositionhist1.jpg"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"2 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/","url":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/","name":"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek) - Statoryaller","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-19T21:48:21+00:00","dateModified":"2023-07-19T21:48:21+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde normal e\u011frilerin R&#39;deki histogramlara nas\u0131l bindirilece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/histogramin-normal-egrisini-rde-ust-uste-getirin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de bir histogram\u0131n \u00fczerine normal bir e\u011fri nas\u0131l bindirilir (2 \u00f6rnek)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/tr\/#website","url":"https:\/\/statorials.org\/tr\/","name":"Statorials","description":"\u0130statistik okuryazarl\u0131\u011f\u0131 rehberiniz!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/tr\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"tr"},{"@type":"Person","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/tr\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Merhaba, ben Benjamin, emekli bir istatistik profes\u00f6r\u00fc ve Statorials \u00f6\u011fretmenine d\u00f6n\u00fc\u015ft\u00fcm. \u0130statistik alan\u0131ndaki kapsaml\u0131 deneyimim ve uzmanl\u0131\u011f\u0131mla, \u00f6\u011frencilerimi Statorials arac\u0131l\u0131\u011f\u0131yla g\u00fc\u00e7lendirmek i\u00e7in bilgilerimi payla\u015fmaya can at\u0131yorum. Daha fazlas\u0131n\u0131 bil","sameAs":["https:\/\/statorials.org\/tr"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2960","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/comments?post=2960"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2960\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2960"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2960"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2960"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}