{"id":3118,"date":"2023-07-19T03:24:49","date_gmt":"2023-07-19T03:24:49","guid":{"rendered":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/"},"modified":"2023-07-19T03:24:49","modified_gmt":"2023-07-19T03:24:49","slug":"ustel-dagilim-pitonu","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/","title":{"rendered":"Python&#39;da \u00fcstel da\u011f\u0131l\u0131m nas\u0131l kullan\u0131l\u0131r?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/tr\/ustel-dagilim-1\/\" target=\"_blank\" rel=\"noopener\">\u00dcstel da\u011f\u0131l\u0131m,<\/a> belirli bir olay ger\u00e7ekle\u015fene kadar beklememiz gereken s\u00fcreyi modellemek i\u00e7in kullan\u0131lan bir olas\u0131l\u0131k da\u011f\u0131l\u0131m\u0131d\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">E\u011fer bir <em>X<\/em> <a href=\"https:\/\/statorials.org\/tr\/rastgele-degiskenler\/\" target=\"_blank\" rel=\"noopener\">rastgele de\u011fi\u015fkeni<\/a> \u00fcstel bir da\u011f\u0131l\u0131m izliyorsa,<\/span> <span style=\"color: #000000;\"><em>X&#8217;in<\/em> k\u00fcm\u00fclatif da\u011f\u0131l\u0131m fonksiyonu \u015fu \u015fekilde yaz\u0131labilir:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong><em>F<\/em> (x; \u03bb) = 1 \u2013 e <sup>-\u03bbx<\/sup><\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Alt\u0131n:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>\u03bb:<\/strong> oran parametresi (\u03bb = 1\/\u03bc olarak hesaplan\u0131r)<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>e:<\/strong> Yakla\u015f\u0131k olarak 2,718&#8217;e e\u015fit bir sabit<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bu e\u011fitimde Python&#8217;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r.<\/span><\/p>\n<h3> <strong>\u00dcstel da\u011f\u0131l\u0131m nas\u0131l olu\u015fturulur?<\/strong><\/h3>\n<p> <span style=\"color: #000000;\">Belirli bir oran parametresi ve \u00f6rnek boyutu ile \u00fcstel bir da\u011f\u0131l\u0131mdan rastgele de\u011ferler olu\u015fturmak i\u00e7in Python&#8217;daki SciPy k\u00fct\u00fcphanesindeki <strong>expon.rvs(scale, size)<\/strong> i\u015flevini kullanabilirsiniz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">from<\/span> scipy. <span style=\"color: #3366ff;\">stats<\/span> <span style=\"color: #008000;\">import<\/span> expo\n\n<span style=\"color: #008080;\">#generate random values from exponential distribution with rate=40 and sample size=10<\/span>\nexpon. <span style=\"color: #3366ff;\">rvs<\/span> (scale= <span style=\"color: #008000;\">40<\/span> , size= <span style=\"color: #008000;\">10<\/span> )\n\narray([116.5368323 , 67.23514699, 12.00399043, 40.74580584,\n        34.60922432, 2.68266663, 22.70459831, 97.66661811,\n         6.64272914, 46.15547298])\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : SciPy kitapl\u0131\u011f\u0131 belgelerinin tamam\u0131n\u0131 <a href=\"https:\/\/docs.scipy.org\/doc\/scipy\/reference\/generated\/scipy.stats.expon.html\" target=\"_blank\" rel=\"noopener\">burada<\/a> bulabilirsiniz.<\/span><\/p>\n<h3> <strong>\u00dcstel Da\u011f\u0131l\u0131m Kullan\u0131larak Olas\u0131l\u0131klar Nas\u0131l Hesaplan\u0131r?<\/strong><\/h3>\n<p> <span style=\"color: #000000;\">Belirli bir gayzerin patlamalar\u0131 aras\u0131ndaki ortalama dakika say\u0131s\u0131n\u0131n 40 dakika oldu\u011funu varsayal\u0131m. Bir patlama i\u00e7in 50 dakikadan daha az beklemek zorunda kalmam\u0131z ne kadar muhtemeldir?<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu sorunu \u00e7\u00f6zmek i\u00e7in \u00f6ncelikle oran parametresini hesaplamam\u0131z gerekir:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">\u03bb = 1\/\u03bc<\/span><\/li>\n<li> <span style=\"color: #000000;\">\u03bb = 1\/40<\/span><\/li>\n<li> <span style=\"color: #000000;\">\u03bb = 0,025<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">\u03bb = 0,025 ve x = 50&#8217;yi CDF form\u00fcl\u00fcne koyabiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">P(X \u2264 x) = 1 \u2013 e <sup>-\u03bbx<\/sup><\/span><\/li>\n<li> <span style=\"color: #000000;\">P(X \u2264 50) = 1 \u2013 e <sup>-0,025(50)<\/sup><\/span><\/li>\n<li> <span style=\"color: #000000;\">P(X \u2264 50) = 0,7135<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bir sonraki patlama i\u00e7in 50 dakikadan az beklemek zorunda kalma olas\u0131l\u0131\u011f\u0131m\u0131z <strong>0,7135&#8217;tir<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Python&#8217;da bu sorunu \u00e7\u00f6zmek i\u00e7in SciPy&#8217;nin <strong>expon.cdf()<\/strong> fonksiyonunu kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">from<\/span> scipy. <span style=\"color: #3366ff;\">stats<\/span> <span style=\"color: #008000;\">import<\/span> expo\n\n<span style=\"color: #008080;\">#calculate probability that x is less than 50 when mean rate is 40<\/span>\nexpon. <span style=\"color: #3366ff;\">cdf<\/span> (x=50, scale=40)\n\n0.7134952031398099\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bir sonraki patlama i\u00e7in 50 dakikadan az beklemek zorunda kalma olas\u0131l\u0131\u011f\u0131m\u0131z <strong>0,7135&#8217;tir<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu bizim manuel olarak hesaplad\u0131\u011f\u0131m\u0131z de\u011fere kar\u015f\u0131l\u0131k geliyor.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>\u00dcstel da\u011f\u0131l\u0131m nas\u0131l \u00e7izilir<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Belirli bir oran parametresiyle \u00fcstel bir da\u011f\u0131l\u0131m \u00e7izmek i\u00e7in a\u015fa\u011f\u0131daki s\u00f6zdizimini kullanabilirsiniz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">from<\/span> scipy. <span style=\"color: #3366ff;\">stats<\/span> <span style=\"color: #008000;\">import<\/span> expo\n<span style=\"color: #008000;\">import<\/span> matplotlib. <span style=\"color: #3366ff;\">pyplot<\/span> <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#generate exponential distribution with sample size 10000<\/span>\nx = expon. <span style=\"color: #3366ff;\">rvs<\/span> (scale= <span style=\"color: #008000;\">40<\/span> ,size= <span style=\"color: #008000;\">10000<\/span> )\n\n<span style=\"color: #008080;\">#create plot of exponential distribution\n<\/span>plt. <span style=\"color: #3366ff;\">hist<\/span> (x, density= <span style=\"color: #008000;\">True<\/span> , edgecolor=' <span style=\"color: #ff0000;\">black<\/span> ')\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-26590 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/exponentielpython1.jpg\" alt=\"\" width=\"514\" height=\"388\" srcset=\"\" sizes=\"auto, \"><\/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;da di\u011fer yayg\u0131n da\u011f\u0131t\u0131mlar\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/balik-dagitim-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da Poisson da\u011f\u0131l\u0131m\u0131 nas\u0131l kullan\u0131l\u0131r?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/t-piton-dagitimi\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da t da\u011f\u0131t\u0131m\u0131 nas\u0131l kullan\u0131l\u0131r?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/piton-duzgun-dagilim\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da D\u00fczg\u00fcn Da\u011f\u0131t\u0131m Nas\u0131l Kullan\u0131l\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00dcstel da\u011f\u0131l\u0131m, belirli bir olay ger\u00e7ekle\u015fene kadar beklememiz gereken s\u00fcreyi modellemek i\u00e7in kullan\u0131lan bir olas\u0131l\u0131k da\u011f\u0131l\u0131m\u0131d\u0131r. E\u011fer bir X rastgele de\u011fi\u015fkeni \u00fcstel bir da\u011f\u0131l\u0131m izliyorsa, X&#8217;in k\u00fcm\u00fclatif da\u011f\u0131l\u0131m fonksiyonu \u015fu \u015fekilde yaz\u0131labilir: F (x; \u03bb) = 1 \u2013 e -\u03bbx Alt\u0131n: \u03bb: oran parametresi (\u03bb = 1\/\u03bc olarak hesaplan\u0131r) e: Yakla\u015f\u0131k olarak 2,718&#8217;e e\u015fit bir [&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-3118","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 \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Python&#039;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 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\/ustel-dagilim-pitonu\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python&#039;da \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Python&#039;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T03:24:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/exponentielpython1.jpg\" \/>\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\/ustel-dagilim-pitonu\/\",\"url\":\"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/\",\"name\":\"Python&#39;da \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-19T03:24:49+00:00\",\"dateModified\":\"2023-07-19T03:24:49+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Python&#39;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python&#39;da \u00fcstel da\u011f\u0131l\u0131m nas\u0131l kullan\u0131l\u0131r?\"}]},{\"@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 \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials","description":"Bu e\u011fitimde Python&#39;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 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\/ustel-dagilim-pitonu\/","og_locale":"tr_TR","og_type":"article","og_title":"Python&#39;da \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials","og_description":"Bu e\u011fitimde Python&#39;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/","og_site_name":"Statorials","article_published_time":"2023-07-19T03:24:49+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/exponentielpython1.jpg"}],"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\/ustel-dagilim-pitonu\/","url":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/","name":"Python&#39;da \u00dcstel Da\u011f\u0131l\u0131m Nas\u0131l Kullan\u0131l\u0131r - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-19T03:24:49+00:00","dateModified":"2023-07-19T03:24:49+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Python&#39;da \u00fcstel da\u011f\u0131l\u0131m\u0131n nas\u0131l kullan\u0131laca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/ustel-dagilim-pitonu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Python&#39;da \u00fcstel da\u011f\u0131l\u0131m nas\u0131l kullan\u0131l\u0131r?"}]},{"@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\/3118","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=3118"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/3118\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=3118"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=3118"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=3118"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}