{"id":3583,"date":"2023-07-16T17:16:30","date_gmt":"2023-07-16T17:16:30","guid":{"rendered":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/"},"modified":"2023-07-16T17:16:30","modified_gmt":"2023-07-16T17:16:30","slug":"intye-numpy-dizisi","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/","title":{"rendered":"Numpy kayan nokta dizisini tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcrme"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Bir NumPy kayan nokta dizisini bir tam say\u0131 dizisine d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Kayan Say\u0131lar\u0131 Tam Say\u0131lara D\u00f6n\u00fc\u015ft\u00fcrme (A\u015fa\u011f\u0131 Yuvarlama)<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>rounded_down_integer_array = float_array. <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Kayan de\u011ferleri tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcr\u00fcn (en yak\u0131n tam say\u0131ya yuvarlan\u0131r)<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>rounded_integer_array = (np. <span style=\"color: #3366ff;\">rint<\/span> (some_floats)). <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 3: Kayan Say\u0131lar\u0131 Tam Say\u0131lara D\u00f6n\u00fc\u015ft\u00fcrme (Yuvarlama)<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong>rounded_up_integer_array = (np. <span style=\"color: #3366ff;\">ceil<\/span> (float_array)). <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, her y\u00f6ntemin pratikte a\u015fa\u011f\u0131daki NumPy kayan diziyle nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> numpy <span style=\"color: #008000;\">as<\/span> np\n\n<span style=\"color: #008080;\">#create NumPy array of floats\n<\/span>float_array = np. <span style=\"color: #3366ff;\">array<\/span> ([2.33, 4.7, 5.1, 6.2356, 7.88, 8.5])\n\n<span style=\"color: #008080;\">#view array\n<\/span><span style=\"color: #008000;\">print<\/span> (float_array)\n\n[2.33 4.7 5.1 6.2356 7.88 8.5 ]\n\n<span style=\"color: #008080;\">#view dtype of array\n<\/span><span style=\"color: #008000;\">print<\/span> ( <span style=\"color: #3366ff;\">float_array.dtype<\/span> )\n\nfloat64<\/strong><\/pre>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 1: Kayan say\u0131lar\u0131 tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcrme (a\u015fa\u011f\u0131 yuvarlanm\u0131\u015f)<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir NumPy kayan nokta dizisinin, her kayan noktan\u0131n en yak\u0131n tam say\u0131ya yuvarland\u0131\u011f\u0131 bir tam say\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#convert NumPy array of floats to array of integers (rounded down)\n<span style=\"color: #000000;\">rounded_down_integer_array = float_array. <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/span>\n#view array\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">print<\/span> (rounded_down_integer_array)\n\n[2 4 5 6 7 8]\n<\/span>\n#view dtype of array\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">print<\/span> (rounded_down_integer_array. <span style=\"color: #3366ff;\">dtype<\/span> )\n\nint32<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Her kayan noktan\u0131n en yak\u0131n tamsay\u0131ya yuvarland\u0131\u011f\u0131n\u0131 ve yeni dizinin bir <strong>int32<\/strong> t\u00fcr\u00fcne sahip oldu\u011funu unutmay\u0131n.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 2: Kayan say\u0131lar\u0131 tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcr\u00fcn (en yak\u0131n tam say\u0131ya yuvarlan\u0131r)<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir NumPy kayan nokta dizisinin, her kayan noktan\u0131n en yak\u0131n tam say\u0131ya yuvarland\u0131\u011f\u0131 bir tam say\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#convert NumPy array of floats to array of integers (rounded to nearest)\n<span style=\"color: #000000;\">rounded_integer_array = (np. <span style=\"color: #3366ff;\">rint<\/span> (float_array)). <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/span>\n#view array\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">print<\/span> (rounded_integer_array)\n\n[2 5 5 6 8 8]<\/span>\n\n#view dtype of array\n<span style=\"color: #000000;\">print(rounded_integer_array. <span style=\"color: #3366ff;\">dtype<\/span> )\n<\/span>\n<span style=\"color: #000000;\">int32<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Her kayan noktan\u0131n en yak\u0131n tamsay\u0131ya yuvarland\u0131\u011f\u0131n\u0131 ve yeni dizinin bir <strong>int32<\/strong> t\u00fcr\u00fcne sahip oldu\u011funu unutmay\u0131n.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>\u00d6rnek 3: Kayan say\u0131lar\u0131 tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcrme (yukar\u0131 yuvarlanm\u0131\u015f)<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, bir NumPy kayan nokta dizisinin, her kayan noktan\u0131n en yak\u0131n tam say\u0131ya yuvarland\u0131\u011f\u0131 bir tam say\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\">#convert NumPy array of floats to array of integers (rounded up)\n<span style=\"color: #000000;\">rounded_up_integer_array = (np. <span style=\"color: #3366ff;\">ceil<\/span> (float_array)). <span style=\"color: #3366ff;\">astype<\/span> (int)\n<\/span>\n#view array\n<span style=\"color: #000000;\"><span style=\"color: #008000;\">print<\/span> (rounded_up_integer_array)\n\n[3 5 6 7 8 9]\n\n<span style=\"color: #008080;\">#view dtype of array\n<\/span><span style=\"color: #008000;\">print<\/span> (rounded_up_integer_array. <span style=\"color: #3366ff;\">dtype<\/span> )\n\nint32<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">Her kayan noktan\u0131n en yak\u0131n tamsay\u0131ya yuvarland\u0131\u011f\u0131n\u0131 ve yeni dizinin bir <strong>int32<\/strong> t\u00fcr\u00fcne sahip oldu\u011funu unutmay\u0131n.<\/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\u011fitimler NumPy&#8217;de di\u011fer genel g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fini a\u00e7\u0131klamaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/numpy-doldurma-dizisi\/\" target=\"_blank\" rel=\"noopener\">NumPy dizisini de\u011ferlerle doldurma<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/numpy-diziden-ogeyi-kaldir\/\" target=\"_blank\" rel=\"noopener\">NumPy dizisinden belirli \u00f6\u011feler nas\u0131l kald\u0131r\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/numpy-degistir\/\" target=\"_blank\" rel=\"noopener\">NumPy dizisindeki \u00f6\u011feler nas\u0131l de\u011fi\u015ftirilir?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/numpy-satir-al\/\" target=\"_blank\" rel=\"noopener\">NumPy dizisinden belirli bir sat\u0131r nas\u0131l al\u0131n\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bir NumPy kayan nokta dizisini bir tam say\u0131 dizisine d\u00f6n\u00fc\u015ft\u00fcrmek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz: Y\u00f6ntem 1: Kayan Say\u0131lar\u0131 Tam Say\u0131lara D\u00f6n\u00fc\u015ft\u00fcrme (A\u015fa\u011f\u0131 Yuvarlama) rounded_down_integer_array = float_array. astype (int) Y\u00f6ntem 2: Kayan de\u011ferleri tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcr\u00fcn (en yak\u0131n tam say\u0131ya yuvarlan\u0131r) rounded_integer_array = (np. rint (some_floats)). astype (int) Y\u00f6ntem 3: Kayan Say\u0131lar\u0131 Tam Say\u0131lara D\u00f6n\u00fc\u015ft\u00fcrme (Yuvarlama) [&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-3583","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>NumPy kayan nokta dizisini int&#039;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\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\/intye-numpy-dizisi\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NumPy kayan nokta dizisini int&#039;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-16T17:16:30+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\/intye-numpy-dizisi\/\",\"url\":\"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/\",\"name\":\"NumPy kayan nokta dizisini int&#39;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-16T17:16:30+00:00\",\"dateModified\":\"2023-07-16T17:16:30+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Numpy kayan nokta dizisini tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcrme\"}]},{\"@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":"NumPy kayan nokta dizisini int&#39;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller","description":"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\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\/intye-numpy-dizisi\/","og_locale":"tr_TR","og_type":"article","og_title":"NumPy kayan nokta dizisini int&#39;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller","og_description":"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/","og_site_name":"Statorials","article_published_time":"2023-07-16T17:16:30+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\/intye-numpy-dizisi\/","url":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/","name":"NumPy kayan nokta dizisini int&#39;lere d\u00f6n\u00fc\u015ft\u00fcrme - Statoryaller","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-16T17:16:30+00:00","dateModified":"2023-07-16T17:16:30+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, bir NumPy kayan nokta dizisinin bir tamsay\u0131 dizisine nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fi birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/intye-numpy-dizisi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Numpy kayan nokta dizisini tam say\u0131lara d\u00f6n\u00fc\u015ft\u00fcrme"}]},{"@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\/3583","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=3583"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3583\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3583"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3583"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}