{"id":2872,"date":"2023-07-20T07:55:51","date_gmt":"2023-07-20T07:55:51","guid":{"rendered":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/"},"modified":"2023-07-20T07:55:51","modified_gmt":"2023-07-20T07:55:51","slug":"nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/","title":{"rendered":"Nas\u0131l d\u00fczeltilir: nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Pandalar\u0131 kullan\u0131rken kar\u015f\u0131la\u015fabilece\u011finiz bir hata:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #ff0000;\">ValueError<\/span> : You are trying to merge on int64 and object columns.\n            If you wish to proceed you should use pd.concat\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu hata, iki panda DataFrame&#8217;i birle\u015ftirmeye \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ancak birle\u015ftirdi\u011finiz s\u00fctun bir DataFrame&#8217;de bir nesne ve di\u011fer DataFrame&#8217;de bir tam say\u0131 oldu\u011funda ortaya \u00e7\u0131kar.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekte bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi g\u00f6sterilmektedir.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Hata nas\u0131l yeniden olu\u015fturulur?<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Diyelim ki a\u015fa\u011f\u0131daki iki panda DataFrame&#8217;i olu\u015fturduk:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #107d3f;\">import<\/span> pandas <span style=\"color: #107d3f;\">as<\/span> pd\n\n<span style=\"color: #008080;\">#createDataFrame<\/span>\ndf1 = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">year<\/span> ': [2015, 2016, 2017, 2018, 2019, 2020, 2021],\n                    ' <span style=\"color: #ff0000;\">sales<\/span> ': [500, 534, 564, 671, 700, 840, 810]})\n\ndf2 = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">year<\/span> ': ['2015', '2016', '2017', '2018', '2019', '2020', '2021'],\n                    ' <span style=\"color: #ff0000;\">refunds<\/span> ': [31, 36, 40, 40, 43, 70, 62]})\n\n<span style=\"color: #008080;\">#view DataFrames\n<\/span><span style=\"color: #008000;\">print<\/span> (df1)\n\n   year sales\n0 2015 500\n1 2016 534\n2 2017 564\n3 2018 671\n4 2019 700\n5,2020 840\n6 2021 810\n\n<span style=\"color: #008000;\">print<\/span> (df2)\n\n   year refunds\n0 2015 31\n1 2016 36\n2 2017 40\n3 2018 40\n4 2019 43\n5 2020 70\n6 2021 62<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u015eimdi iki DataFrame&#8217;i birle\u015ftirmeye \u00e7al\u0131\u015ft\u0131\u011f\u0131m\u0131z\u0131 varsayal\u0131m:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#attempt to merge two DataFrames\n<\/span>big_df = df1. <span style=\"color: #3366ff;\">merge<\/span> (df2, on=' <span style=\"color: #ff0000;\">year<\/span> ', how=' <span style=\"color: #ff0000;\">left<\/span> ')\n\n<span style=\"color: #ff0000;\">ValueError<\/span> : You are trying to merge on int64 and object columns.\n            If you wish to proceed you should use pd.concat\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u0130lk DataFrame&#8217;deki <strong>y\u0131l<\/strong> de\u011fi\u015fkeni bir tamsay\u0131, ikinci DataFrame&#8217;deki <strong>y\u0131l<\/strong> de\u011fi\u015fkeni ise bir nesne oldu\u011fundan <strong>ValueError<\/strong> al\u0131yoruz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Hata nas\u0131l d\u00fczeltilir?<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Bu hatay\u0131 d\u00fczeltmenin en kolay yolu, ikinci DataFrame&#8217;in <strong>y\u0131l<\/strong> de\u011fi\u015fkenini bir tam say\u0131ya d\u00f6n\u00fc\u015ft\u00fcrmek ve ard\u0131ndan birle\u015ftirme i\u015flemini ger\u00e7ekle\u015ftirmektir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki s\u00f6zdizimi bunun nas\u0131l yap\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008080;\">#convert year variable in df2 to integer\n<\/span>df2[' <span style=\"color: #ff0000;\">year<\/span> ']=df2[' <span style=\"color: #ff0000;\">year<\/span> ']. <span style=\"color: #3366ff;\">astype<\/span> (int)\n\n<span style=\"color: #008080;\">#merge two DataFrames\n<\/span>big_df = df1. <span style=\"color: #3366ff;\">merge<\/span> (df2, on=' <span style=\"color: #ff0000;\">year<\/span> ', how=' <span style=\"color: #ff0000;\">left<\/span> ')\n\n<span style=\"color: #008080;\">#view merged DataFrame\n<\/span>big_df\n\n\tyear sales refunds\n0 2015 500 31\n1 2016 534 36\n2 2017 564 40\n3 2018 671 40\n4 2019 700 43\n5 2020 840 70\n6 2021 810 62<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Herhangi bir <strong>ValueError<\/strong> almad\u0131\u011f\u0131m\u0131z\u0131 ve iki DataFrame&#8217;i ba\u015far\u0131l\u0131 bir \u015fekilde tek bir DataFrame&#8217;de birle\u015ftirmeyi ba\u015fard\u0131\u011f\u0131m\u0131z\u0131 unutmay\u0131n.<\/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 Python&#8217;daki di\u011fer yayg\u0131n hatalar\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/sutunlar-cakisiyor-ancak-son-ek-belirtilmemis\/\" target=\"_blank\" rel=\"noopener\">Nas\u0131l d\u00fczeltilir? S\u00fctunlar \u00e7ak\u0131\u015f\u0131yor ancak son ek belirtilmemi\u015f<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/numpy-ndarray-nesnesinin-eklenti-ozelligi-yok\/\" target=\"_blank\" rel=\"noopener\">Nas\u0131l d\u00fczeltilir: &#8216;numpy.ndarray&#8217; nesnesinin &#8216;append&#8217; \u00f6zelli\u011fi yok<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/tum-skaler-degerleri-kullaniyorsaniz-bir-indeks-iletmeniz-gerekiyorsa-deger-hatasi\/\" target=\"_blank\" rel=\"noopener\">Nas\u0131l d\u00fczeltilir? T\u00fcm skaler de\u011ferleri kullan\u0131yorsan\u0131z bir dizin iletmeniz gerekir<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Pandalar\u0131 kullan\u0131rken kar\u015f\u0131la\u015fabilece\u011finiz bir hata: ValueError : You are trying to merge on int64 and object columns. If you wish to proceed you should use pd.concat Bu hata, iki panda DataFrame&#8217;i birle\u015ftirmeye \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ancak birle\u015ftirdi\u011finiz s\u00fctun bir DataFrame&#8217;de bir nesne ve di\u011fer DataFrame&#8217;de bir tam say\u0131 oldu\u011funda ortaya \u00e7\u0131kar. A\u015fa\u011f\u0131daki \u00f6rnekte bu hatan\u0131n pratikte 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-2872","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>Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.\" \/>\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\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T07:55:51+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=\"2 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/\",\"url\":\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/\",\"name\":\"Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-20T07:55:51+00:00\",\"dateModified\":\"2023-07-20T07:55:51+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nas\u0131l d\u00fczeltilir: nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz\"}]},{\"@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":"Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials","description":"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.","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\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/","og_locale":"tr_TR","og_type":"article","og_title":"Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials","og_description":"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.","og_url":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/","og_site_name":"Statorials","article_published_time":"2023-07-20T07:55:51+00:00","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\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/","url":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/","name":"Nas\u0131l d\u00fczeltilir: Nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-20T07:55:51+00:00","dateModified":"2023-07-20T07:55:51+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde pandalarda \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: &quot;nesneyi ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz&quot;.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/nesne-ve-int64-sutunlarini-birlestirmeye-calisiyorsunuz\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Nas\u0131l d\u00fczeltilir: nesne ve int64 s\u00fctunlar\u0131n\u0131 birle\u015ftirmeye \u00e7al\u0131\u015f\u0131yorsunuz"}]},{"@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\/2872","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=2872"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2872\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2872"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2872"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2872"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}