{"id":2833,"date":"2023-07-20T12:07:09","date_gmt":"2023-07-20T12:07:09","guid":{"rendered":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/"},"modified":"2023-07-20T12:07:09","modified_gmt":"2023-07-20T12:07:09","slug":"valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/","title":{"rendered":"Nas\u0131l d\u00fczeltilir? valueerror: e\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor"},"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> : cannot set a row with mismatched columns\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu hata, pandas DataFrame&#8217;e yeni bir sat\u0131r eklemeye \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ancak yeni sat\u0131rdaki de\u011ferlerin say\u0131s\u0131 mevcut DataFrame&#8217;deki s\u00fctun say\u0131s\u0131yla e\u015fle\u015fmedi\u011finde 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;\">A\u015fa\u011f\u0131daki pandalar\u0131 DataFrame olu\u015fturdu\u011fumuzu varsayal\u0131m:<\/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>\ndf = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ': [18, 22, 19, 14, 14, 11, 20, 28, 22],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4, 8],\n                   ' <span style=\"color: #ff0000;\">rebounds<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12, 9]})\n\n<span style=\"color: #008080;\">#view DataFrame\n<\/span>df\n\n\tteam points assists rebounds\n0 A 18 5 11\n1 B 22 7 8\n2 C 19 7 10\n3 D 14 9 6\n4 E 14 12 6\n5 F 11 9 5\n6 G 20 9 9\n7:28 4 12\n8 I 22 8 9\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u015eimdi DataFrame&#8217;in sonuna yeni bir sat\u0131r eklemeye \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;\">#define new row to append\n<span style=\"color: #000000;\">new_team = ['I', 30]\n\n<span style=\"color: #008080;\">#append row to DataFrame\n<\/span>df. <span style=\"color: #3366ff;\">loc<\/span> [ <span style=\"color: #008000;\">len<\/span> (df)] = new_team\n\n<span style=\"color: #008080;\">#view updated DataFrame\n<\/span>df\n\n<span style=\"color: #ff0000;\">ValueError<\/span> : cannot set a row with mismatched columns\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Eklemeye \u00e7al\u0131\u015ft\u0131\u011f\u0131m\u0131z yeni sat\u0131r\u0131n yaln\u0131zca iki de\u011feri olmas\u0131, ancak mevcut DataFrame&#8217;in d\u00f6rt s\u00fctunu olmas\u0131 nedeniyle <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, eksik de\u011ferleri otomatik olarak NaN ile dolduracak olan yeni sat\u0131r\u0131 DataFrame&#8217;in sonuna eklemek i\u00e7in <strong>apend()<\/strong> i\u015flevini kullanmakt\u0131r:<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki s\u00f6zdizimi bu i\u015flevin pratikte nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define new row to append\n<span style=\"color: #000000;\">new = ['J', 30]<\/span>\n\n#append row to end of DataFrame\n<\/span>df = df. <span style=\"color: #3366ff;\">append<\/span> ( <span style=\"color: #3366ff;\">pd.Series<\/span> (new,index= <span style=\"color: #3366ff;\">df.columns<\/span> [: <span style=\"color: #008000;\">len<\/span> (new)]), ignore_index= <span style=\"color: #008000;\">True<\/span> )\n\n<span style=\"color: #008080;\">#view updated DataFrame<\/span>\ndf\n\n\tteam points assists rebounds\n0 to 18 5.0 11.0\n1 B 22 7.0 8.0\n2 C 19 7.0 10.0\n3 D 14 9.0 6.0\n4 E 14 12.0 6.0\n5 F 11 9.0 5.0\n6 G 20 9.0 9.0\n7:28 a.m. 4.0 12.0\n8 I 22 8.0 9.0\n9 D 30 NaN NaN\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Herhangi bir <strong>ValueError<\/strong> almad\u0131\u011f\u0131m\u0131z\u0131 ve yeni sat\u0131r\u0131n DataFrame&#8217;in sonuna eklendi\u011fini unutmay\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ayr\u0131ca yeni sat\u0131rdaki iki eksik de\u011ferin basit\u00e7e NaN de\u011ferleriyle dolduruldu\u011funu 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 : cannot set a row with mismatched columns Bu hata, pandas DataFrame&#8217;e yeni bir sat\u0131r eklemeye \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ancak yeni sat\u0131rdaki de\u011ferlerin say\u0131s\u0131 mevcut DataFrame&#8217;deki s\u00fctun say\u0131s\u0131yla e\u015fle\u015fmedi\u011finde ortaya \u00e7\u0131kar. A\u015fa\u011f\u0131daki \u00f6rnekte bu hatan\u0131n pratikte nas\u0131l d\u00fczeltilece\u011fi g\u00f6sterilmektedir. Hata nas\u0131l yeniden olu\u015fturulur? A\u015fa\u011f\u0131daki pandalar\u0131 DataFrame olu\u015fturdu\u011fumuzu varsayal\u0131m: import pandas as [&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-2833","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? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.\" \/>\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\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/\" \/>\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? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-20T12:07:09+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\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/\",\"url\":\"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/\",\"name\":\"Nas\u0131l d\u00fczeltilir? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-20T12:07:09+00:00\",\"dateModified\":\"2023-07-20T12:07:09+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nas\u0131l d\u00fczeltilir? valueerror: e\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor\"}]},{\"@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? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials","description":"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.","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\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/","og_locale":"tr_TR","og_type":"article","og_title":"Nas\u0131l d\u00fczeltilir? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials","og_description":"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.","og_url":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/","og_site_name":"Statorials","article_published_time":"2023-07-20T12:07:09+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\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/","url":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/","name":"Nas\u0131l d\u00fczeltilir? ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-20T12:07:09+00:00","dateModified":"2023-07-20T12:07:09+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde pandalarda a\u015fa\u011f\u0131daki hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: ValueError: E\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/valueerror-uyumsuz-sutunlara-sahip-bir-satir-ayarlayamiyor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Nas\u0131l d\u00fczeltilir? valueerror: e\u015fle\u015fmeyen s\u00fctunlara sahip bir sat\u0131r tan\u0131mlanam\u0131yor"}]},{"@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\/2833","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=2833"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2833\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}