{"id":855,"date":"2023-07-28T13:03:16","date_gmt":"2023-07-28T13:03:16","guid":{"rendered":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/"},"modified":"2023-07-28T13:03:16","modified_gmt":"2023-07-28T13:03:16","slug":"python-anova-cift-yonlu","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/","title":{"rendered":"Python&#39;da i\u0307ki y\u00f6nl\u00fc anova nas\u0131l ger\u00e7ekle\u015ftirilir"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">\u0130ki fakt\u00f6re b\u00f6l\u00fcnm\u00fc\u015f \u00fc\u00e7 veya daha fazla ba\u011f\u0131ms\u0131z grubun ortalamalar\u0131 aras\u0131nda istatistiksel olarak anlaml\u0131 bir fark olup olmad\u0131\u011f\u0131n\u0131 belirlemek i\u00e7in <a href=\"https:\/\/statorials.org\/tr\/iki-yonlu-anova\/\" target=\"_blank\" rel=\"noopener\">iki y\u00f6nl\u00fc ANOVA<\/a> kullan\u0131l\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">\u0130ki y\u00f6nl\u00fc ANOVA&#8217;n\u0131n amac\u0131, iki fakt\u00f6r\u00fcn bir yan\u0131t de\u011fi\u015fkeni \u00fczerindeki etkisini belirlemek ve iki fakt\u00f6r aras\u0131nda yan\u0131t de\u011fi\u015fkeni \u00fczerinde bir etkile\u015fim olup olmad\u0131\u011f\u0131n\u0131 belirlemektir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde Python&#8217;da iki y\u00f6nl\u00fc ANOVA&#8217;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek: Python&#8217;da iki y\u00f6nl\u00fc ANOVA<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Bir botanik\u00e7i bitki b\u00fcy\u00fcmesinin g\u00fcne\u015f \u0131\u015f\u0131\u011f\u0131na maruz kalma ve sulama s\u0131kl\u0131\u011f\u0131ndan etkilenip etkilenmedi\u011fini bilmek ister. 30 tohum ekiyor ve iki ay boyunca farkl\u0131 g\u00fcne\u015f \u0131\u015f\u0131\u011f\u0131 ko\u015fullar\u0131nda ve sulama s\u0131kl\u0131\u011f\u0131nda b\u00fcy\u00fcmelerini sa\u011fl\u0131yor. \u0130ki ay sonra her bitkinin y\u00fcksekli\u011fini in\u00e7 cinsinden kaydediyor.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Sulama s\u0131kl\u0131\u011f\u0131 ve g\u00fcne\u015fe maruz kalman\u0131n bitki b\u00fcy\u00fcmesi \u00fczerinde \u00f6nemli bir etkiye sahip olup olmad\u0131\u011f\u0131n\u0131 belirlemek ve su s\u0131kl\u0131\u011f\u0131 ile g\u00fcne\u015fe maruz kalma aras\u0131nda bir etkile\u015fim etkisi olup olmad\u0131\u011f\u0131n\u0131 belirlemek amac\u0131yla iki y\u00f6nl\u00fc bir ANOVA ger\u00e7ekle\u015ftirmek i\u00e7in a\u015fa\u011f\u0131daki ad\u0131mlar\u0131 kullan\u0131n. sulama ve g\u00fcne\u015fe maruz kalma.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Ad\u0131m 1: Verileri girin.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">\u00d6ncelikle a\u015fa\u011f\u0131daki \u00fc\u00e7 de\u011fi\u015fkeni i\u00e7eren bir pandas DataFrame olu\u015fturaca\u011f\u0131z:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>su:<\/strong> her bitkinin ne s\u0131kl\u0131kla suland\u0131\u011f\u0131: g\u00fcnl\u00fck veya haftal\u0131k<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>g\u00fcne\u015f:<\/strong> her bitkinin ald\u0131\u011f\u0131 g\u00fcne\u015fe maruz kalma miktar\u0131: d\u00fc\u015f\u00fck, orta veya y\u00fcksek<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>y\u00fckseklik:<\/strong> iki ay sonra her bitkinin y\u00fcksekli\u011fi (in\u00e7 cinsinden)<\/span><\/li>\n<\/ul>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> numpy <span style=\"color: #107d3f;\">as<\/span> np\n<span style=\"color: #107d3f;\">import<\/span> pandas <span style=\"color: #107d3f;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#create data<\/span>\ndf = pd.DataFrame({'water': np.repeat(['daily', 'weekly'], 15),\n                   'sun': np.tile(np.repeat(['low', 'med', 'high'], 5), 2),\n                   'height': [6, 6, 6, 5, 6, 5, 5, 6, 4, 5,\n                              6, 6, 7, 8, 7, 3, 4, 4, 4, 5,\n                              4, 4, 4, 4, 4, 5, 6, 6, 7, 8]})\n\n<span style=\"color: #008080;\">#view first ten rows of data<\/span> \ndf[:10]\n\n\twater sun height\n0 daily low 6\n1 daily low 6\n2 daily low 6\n3 daily low 5\n4 daily low 6\n5 daily med 5\n6 daily med 5\n7 daily med 6\n8 daily med 4\n9 daily med 5\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Ad\u0131m 2: \u0130ki y\u00f6nl\u00fc ANOVA&#8217;y\u0131 ger\u00e7ekle\u015ftirin.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Daha sonra, statsmodels k\u00fct\u00fcphanesindeki <a href=\"https:\/\/www.statsmodels.org\/dev\/generated\/statsmodels.stats.anova.anova_lm.html\" target=\"_blank\" rel=\"noopener\">anova_lm() fonksiyonunu<\/a> kullanarak iki y\u00f6nl\u00fc ANOVA&#8217;y\u0131 ger\u00e7ekle\u015ftirece\u011fiz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> statsmodels.api <span style=\"color: #107d3f;\">as<\/span> sm\n<span style=\"color: #107d3f;\">from<\/span> statsmodels.formula.api <span style=\"color: #107d3f;\">import<\/span> ols\n\n<span style=\"color: #008080;\">#perform two-way ANOVA<\/span>\nmodel = ols('height ~ C(water) + C(sun) + C(water):C(sun)', data=df).fit()\nsm.stats.anova_lm(model, typ=2)\n\n\t           sum_sq df F PR(&gt;F)\nC(water) 8.533333 1.0 16.0000 0.000527\nC(sun) 24.866667 2.0 23.3125 0.000002\nC(water):C(sun) 2.466667 2.0 2.3125 0.120667\nResidual 12.800000 24.0 NaN NaN\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Ad\u0131m 3: Sonu\u00e7lar\u0131 yorumlay\u0131n.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Tablodaki fakt\u00f6rlerin her biri i\u00e7in a\u015fa\u011f\u0131daki p de\u011ferlerini g\u00f6rebiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>su:<\/strong> p-de\u011feri = 0,000527<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>g\u00fcne\u015f:<\/strong> p-de\u011feri = 0,0000002<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>su*g\u00fcne\u015f:<\/strong> p-de\u011feri = 0,120667<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Su ve g\u00fcne\u015f i\u00e7in p de\u011ferlerinin her ikisinin de 0,05&#8217;ten k\u00fc\u00e7\u00fck olmas\u0131, her iki fakt\u00f6r\u00fcn de bitki boyu \u00fczerinde istatistiksel olarak anlaml\u0131 bir etkiye sahip oldu\u011fu anlam\u0131na gelir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Etkile\u015fim etkisinin p de\u011feri (0,120667) 0,05&#8217;ten az olmad\u0131\u011f\u0131ndan, bu bize g\u00fcne\u015fe maruz kalma ile sulama s\u0131kl\u0131\u011f\u0131 aras\u0131nda \u00f6nemli bir etkile\u015fim etkisinin olmad\u0131\u011f\u0131n\u0131 g\u00f6sterir.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not:<\/strong> ANOVA sonu\u00e7lar\u0131 bize sulama s\u0131kl\u0131\u011f\u0131n\u0131n ve g\u00fcne\u015fe maruz kalman\u0131n bitki boyu \u00fczerinde istatistiksel olarak anlaml\u0131 bir etkiye sahip oldu\u011funu s\u00f6ylese de, Su ve g\u00fcne\u015f \u0131\u015f\u0131\u011f\u0131n\u0131n bitki boyunu nas\u0131l farkl\u0131 d\u00fczeylerde etkiledi\u011fini tam olarak belirlemek i\u00e7in <a href=\"https:\/\/statorials.org\/tr\/post-hoc-anova-testleri\/\" target=\"_blank\" rel=\"noopener\">post-hoc testler<\/a> yapmam\u0131z gerekecektir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimlerde Python&#8217;da di\u011fer genel g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/tek-yonlu-anova-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da Tek Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/uc-yollu-anova-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da \u00dc\u00e7 Yollu ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u0130ki fakt\u00f6re b\u00f6l\u00fcnm\u00fc\u015f \u00fc\u00e7 veya daha fazla ba\u011f\u0131ms\u0131z grubun ortalamalar\u0131 aras\u0131nda istatistiksel olarak anlaml\u0131 bir fark olup olmad\u0131\u011f\u0131n\u0131 belirlemek i\u00e7in iki y\u00f6nl\u00fc ANOVA kullan\u0131l\u0131r. \u0130ki y\u00f6nl\u00fc ANOVA&#8217;n\u0131n amac\u0131, iki fakt\u00f6r\u00fcn bir yan\u0131t de\u011fi\u015fkeni \u00fczerindeki etkisini belirlemek ve iki fakt\u00f6r aras\u0131nda yan\u0131t de\u011fi\u015fkeni \u00fczerinde bir etkile\u015fim olup olmad\u0131\u011f\u0131n\u0131 belirlemektir. Bu e\u011fitimde Python&#8217;da iki y\u00f6nl\u00fc ANOVA&#8217;n\u0131n nas\u0131l [&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-855","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>Python&#039;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials<\/title>\n<meta name=\"description\" content=\"Python&#039;da iki y\u00f6nl\u00fc ANOVA&#039;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.\" \/>\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\/python-anova-cift-yonlu\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python&#039;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials\" \/>\n<meta property=\"og:description\" content=\"Python&#039;da iki y\u00f6nl\u00fc ANOVA&#039;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T13:03:16+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\/python-anova-cift-yonlu\/\",\"url\":\"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/\",\"name\":\"Python&#39;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-28T13:03:16+00:00\",\"dateModified\":\"2023-07-28T13:03:16+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Python&#39;da iki y\u00f6nl\u00fc ANOVA&#39;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python&#39;da i\u0307ki y\u00f6nl\u00fc anova nas\u0131l ger\u00e7ekle\u015ftirilir\"}]},{\"@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":"Python&#39;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials","description":"Python&#39;da iki y\u00f6nl\u00fc ANOVA&#39;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.","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\/python-anova-cift-yonlu\/","og_locale":"tr_TR","og_type":"article","og_title":"Python&#39;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials","og_description":"Python&#39;da iki y\u00f6nl\u00fc ANOVA&#39;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.","og_url":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/","og_site_name":"Statorials","article_published_time":"2023-07-28T13:03:16+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\/python-anova-cift-yonlu\/","url":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/","name":"Python&#39;da \u0130ki Y\u00f6nl\u00fc ANOVA Nas\u0131l Ger\u00e7ekle\u015ftirilir - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-28T13:03:16+00:00","dateModified":"2023-07-28T13:03:16+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Python&#39;da iki y\u00f6nl\u00fc ANOVA&#39;n\u0131n nas\u0131l ger\u00e7ekle\u015ftirilece\u011fine dair basit bir a\u00e7\u0131klama.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/python-anova-cift-yonlu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Python&#39;da i\u0307ki y\u00f6nl\u00fc anova nas\u0131l ger\u00e7ekle\u015ftirilir"}]},{"@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\/855","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=855"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/855\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=855"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=855"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=855"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}