{"id":3219,"date":"2023-07-18T15:10:25","date_gmt":"2023-07-18T15:10:25","guid":{"rendered":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/"},"modified":"2023-07-18T15:10:25","modified_gmt":"2023-07-18T15:10:25","slug":"r-degisken-icin-gecersiz-tur-listesi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/","title":{"rendered":"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">R&#8217;de kar\u015f\u0131la\u015fabilece\u011finiz bir hata:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>Error in model.frame.default(formula = y ~ x, drop.unused.levels = TRUE): \n  invalid type (list) for variable 'x' \n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu hata genellikle R&#8217;ye bir regresyon modeli veya ANOVA modeli s\u0131\u011fd\u0131rmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve de\u011fi\u015fkenlerden biri i\u00e7in <strong>vekt\u00f6r<\/strong> yerine bir <strong>liste<\/strong> kulland\u0131\u011f\u0131n\u0131zda ortaya \u00e7\u0131kar.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r.<\/span><\/p>\n<h2> <strong>Hata nas\u0131l yeniden olu\u015fturulur?<\/strong><\/h2>\n<p> <span style=\"color: #000000;\">Diyelim ki R&#8217;ye <a href=\"https:\/\/statorials.org\/tr\/rde-basit-dogrusal-regresyon\/\" target=\"_blank\" rel=\"noopener\">basit bir do\u011frusal regresyon modeli<\/a> s\u0131\u011fd\u0131rmaya \u00e7al\u0131\u015f\u0131yorum:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define variables\n<span style=\"color: #000000;\">x &lt;- list(1, 4, 4, 5, 7, 8, 9, 10, 13, 14)\ny &lt;- c(10, 13, 13, 14, 18, 20, 22, 24, 29, 31)<\/span>\n\n#attempt to fit regression model\n<span style=\"color: #000000;\">model &lt;- lm(y ~ x)\n\nError in model.frame.default(formula = y ~ x, drop.unused.levels = TRUE): \n  invalid type (list) for variable 'x'\n<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>lm()<\/strong> i\u015flevi girdi olarak yaln\u0131zca vekt\u00f6rleri alabildi\u011finden ve x de\u011fi\u015fkeni \u015fu anda bir liste oldu\u011fundan hata al\u0131yorum.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Hata nas\u0131l \u00f6nlenir<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Bu hatay\u0131 \u00f6nlemenin en kolay yolu, liste de\u011fi\u015fkenini bir vekt\u00f6re d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in <a href=\"https:\/\/statorials.org\/tr\/abonelikten-cik\/\" target=\"_blank\" rel=\"noopener\">unlist()<\/a> i\u015flevini kullanmakt\u0131r:<\/span><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define variables\n<span style=\"color: #000000;\">x &lt;- list(1, 4, 4, 5, 7, 8, 9, 10, 13, 14)\ny &lt;- c(10, 13, 13, 14, 18, 20, 22, 24, 29, 31)\n\n<span style=\"color: #008080;\">#attempt to fit regression model\n<\/span>model &lt;- lm(y ~ unlist(x))\n\n<span style=\"color: #008080;\">#view the model output<\/span>\nsummary(model)\n\nCall:\nlm(formula = y ~ unlist(x))\n\nResiduals:\n    Min 1Q Median 3Q Max \n-1.1282 -0.4194 -0.1087 0.2966 1.7068 \n\nCoefficients:\n            Estimate Std. Error t value Pr(&gt;|t|)    \n(Intercept) 6.58447 0.55413 11.88 2.31e-06 ***\nunlist(x) 1.70874 0.06544 26.11 4.97e-09 ***\n---\nSignificant. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1\n\nResidual standard error: 0.8134 on 8 degrees of freedom\nMultiple R-squared: 0.9884, Adjusted R-squared: 0.987 \nF-statistic: 681.8 on 1 and 8 DF, p-value: 4.97e-09\n<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">x de\u011fi\u015fkenini bir vekt\u00f6re d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in <strong>unlist()<\/strong> y\u00f6ntemini kulland\u0131\u011f\u0131m\u0131z i\u00e7in basit do\u011frusal regresyon modelini bu sefer hatas\u0131z bir \u015fekilde s\u0131\u011fd\u0131rabildi\u011fimizi unutmay\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/tr\/coklu-dogrusal-regresyon-r\/\" target=\"_blank\" rel=\"noopener\">\u00c7oklu do\u011frusal regresyon modeli<\/a> uyguluyorsan\u0131z ve halihaz\u0131rda liste nesneleri olan birden fazla tahmin de\u011fi\u015fkeniniz varsa, regresyon modelini yerle\u015ftirmeden \u00f6nce bunlar\u0131n her birini vekt\u00f6rlere d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in <strong>unlist() i\u015flevini<\/strong> kullanabilece\u011finizi unutmay\u0131n:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#define variables\n<span style=\"color: #000000;\">x1 &lt;- list(1, 4, 4, 5, 7, 8, 9, 10, 13, 14)\nx2 &lt;- list(20, 16, 16, 15, 16, 12, 10, 8, 8, 4)\ny &lt;- c(10, 13, 13, 14, 18, 20, 22, 24, 29, 31)\n\n<span style=\"color: #008080;\">#fit multiple linear regression model\n<\/span>model &lt;- lm(y ~ unlist(x1) + unlist(x2))\n\n<span style=\"color: #008080;\">#view the model output\n<\/span>summary(model)\n\nCall:\nlm(formula = y ~ unlist(x1) + unlist(x2))\n\nResiduals:\n    Min 1Q Median 3Q Max \n-1.1579 -0.4211 -0.1386 0.3108 1.7130 \n\nCoefficients:\n            Estimate Std. Error t value Pr(&gt;|t|)    \n(Intercept) 8.34282 4.44971 1.875 0.102932    \nunlist(x1) 1.61339 0.24899 6.480 0.000341 ***\nunlist(x2) -0.08346 0.20937 -0.399 0.702044    \n---\nSignificant. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1\n\nResidual standard error: 0.8599 on 7 degrees of freedom\nMultiple R-squared: 0.9887, Adjusted R-squared: 0.9854 \nF-statistic: 305.1 on 2 and 7 DF, p-value: 1.553e-07<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Yine listedeki nesnelerin her birini vekt\u00f6rlere d\u00f6n\u00fc\u015ft\u00fcrd\u00fc\u011f\u00fcm\u00fcz i\u00e7in herhangi bir hata alm\u0131yoruz.<\/span><\/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\/rdeki-glm-ciktisini-yorumla\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de glm \u00e7\u0131kt\u0131s\u0131 nas\u0131l yorumlan\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/lanova-sonuclarini-r-cinsinden-yorumlama\/\" target=\"_blank\" rel=\"noopener\">R&#8217;de ANOVA sonu\u00e7lar\u0131 nas\u0131l yorumlan\u0131r?<\/a><br \/><a href=\"https:\/\/statorials.org\/tr\/glm-fit-algoritmasi-yakinsamadi\/\" target=\"_blank\" rel=\"noopener\">R Uyar\u0131s\u0131 nas\u0131l ele al\u0131n\u0131r: glm.fit: algoritma yak\u0131nsamad\u0131<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>R&#8217;de kar\u015f\u0131la\u015fabilece\u011finiz bir hata: Error in model.frame.default(formula = y ~ x, drop.unused.levels = TRUE): invalid type (list) for variable &#8216;x&#8217; Bu hata genellikle R&#8217;ye bir regresyon modeli veya ANOVA modeli s\u0131\u011fd\u0131rmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve de\u011fi\u015fkenlerden biri i\u00e7in vekt\u00f6r yerine bir liste kulland\u0131\u011f\u0131n\u0131zda ortaya \u00e7\u0131kar. Bu e\u011fitimde bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r. Hata nas\u0131l yeniden olu\u015fturulur? [&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-3219","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 nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde R&#039;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).\" \/>\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\/r-degisken-icin-gecersiz-tur-listesi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R&#039;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde R&#039;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-18T15:10:25+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=\"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=\"3 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/\",\"url\":\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/\",\"name\":\"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-18T15:10:25+00:00\",\"dateModified\":\"2023-07-18T15:10:25+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste)\"}]},{\"@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 nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials","description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).","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\/r-degisken-icin-gecersiz-tur-listesi\/","og_locale":"tr_TR","og_type":"article","og_title":"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials","og_description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).","og_url":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/","og_site_name":"Statorials","article_published_time":"2023-07-18T15:10:25+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Dr.benjamin anderson","Tahmini okuma s\u00fcresi":"3 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/","url":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/","name":"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste) - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-18T15:10:25+00:00","dateModified":"2023-07-18T15:10:25+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde R&#39;de a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: De\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste).","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/r-degisken-icin-gecersiz-tur-listesi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"R&#39;de nas\u0131l d\u00fczeltilir: de\u011fi\u015fken i\u00e7in ge\u00e7ersiz t\u00fcr (liste)"}]},{"@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\/3219","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=3219"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3219\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3219"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3219"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}