{"id":1192,"date":"2023-07-27T08:27:48","date_gmt":"2023-07-27T08:27:48","guid":{"rendered":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/"},"modified":"2023-07-27T08:27:48","modified_gmt":"2023-07-27T08:27:48","slug":"en-boy-orani-matplotlib","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/","title":{"rendered":"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\u0131r"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Bir matplotlib grafi\u011finin <strong>en-boy oran\u0131<\/strong> , eksen \u00f6l\u00e7eklendirmesinin en-boy oran\u0131n\u0131, yani y biriminin x birimine oran\u0131n\u0131 ifade eder.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu oran <a href=\"https:\/\/matplotlib.org\/stable\/api\/_as_gen\/matplotlib.axes.Axes.set_aspect.html\" target=\"_blank\" rel=\"noopener noreferrer\">matplotlib.axes.Axes.set_aspect()<\/a> i\u015flevi kullan\u0131larak de\u011fi\u015ftirilebilir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Asl\u0131nda <strong>set_aspect()<\/strong> i\u015flevi asl\u0131nda <strong>veri koordinat sistemi<\/strong> ad\u0131 verilen sistemi de\u011fi\u015ftirir, ancak pratikte genellikle <strong>ekran koordinat sistemini<\/strong> de\u011fi\u015ftirmek isteriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu d\u00f6n\u00fc\u015f\u00fcm\u00fc kolayla\u015ft\u0131rmak i\u00e7in \u015fu kod par\u00e7as\u0131n\u0131 kullanabiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\">#define y-unit to x-unit ratio<\/span>\nratio = 1.0\n\n<span style=\"color: #008080;\">#get x and y limits\n<\/span>x_left, x_right = ax. <span style=\"color: #3366ff;\">get_xlim<\/span> ()\ny_low, y_high = ax. <span style=\"color: #3366ff;\">get_ylim<\/span> ()\n\n<span style=\"color: #008080;\">#set aspect ratio<\/span>\nax. <span style=\"color: #3366ff;\">set_aspect<\/span> ( <span style=\"color: #3366ff;\">abs<\/span> ((x_right-x_left)\/(y_low-y_high))*ratio)\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu fonksiyonun pratikte kullan\u0131m\u0131na ili\u015fkin bir \u00f6rnek \u00fczerinden ge\u00e7elim.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ad\u0131m 1: Temel Matplotlib Grafi\u011fi Olu\u015fturun<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">\u0130lk \u00f6nce Matplotlib&#8217;i kullanarak basit bir \u00e7izgi grafi\u011fi olu\u015ftural\u0131m:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib.pyplot <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define matplotlib figure and axis\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create simple line plot\n<\/span>ax. <span style=\"color: #3366ff;\">plot<\/span> ([0, 10],[0, 20])\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()\n<\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11841 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aspectratio1.png\" alt=\"\" width=\"387\" height=\"250\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Ad\u0131m 2: En boy oran\u0131n\u0131 ayarlay\u0131n (yanl\u0131\u015f \u015fekilde)<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">X ekseninin y ekseninden daha uzun oldu\u011funa dikkat edin. En boy oran\u0131n\u0131 1&#8217;e ayarlamaya \u00e7al\u0131\u015fal\u0131m, yani x ekseni ve y ekseni e\u015fit olmal\u0131d\u0131r:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib.pyplot <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define matplotlib figure and axis\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create simple line plot\n<\/span>ax. <span style=\"color: #3366ff;\">plot<\/span> ([0, 10],[0, 20])\n\n<span style=\"color: #008080;\">#attempt to set aspect ratio to 1\n<\/span>ax. <span style=\"color: #3366ff;\">set_aspect<\/span> (1)\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11842 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aspectratio2.png\" alt=\"\" width=\"174\" height=\"276\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Bunun beklendi\u011fi gibi \u00e7al\u0131\u015fmad\u0131\u011f\u0131n\u0131 unutmay\u0131n. Y ekseni x ekseninden \u00e7ok daha uzundur.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>3. Ad\u0131m: En boy oran\u0131n\u0131 ayarlay\u0131n (do\u011fru \u015fekilde)<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, do\u011fru en boy oran\u0131n\u0131 ayarlamak i\u00e7in basit bir hesaplaman\u0131n 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> matplotlib.pyplot <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define matplotlib figure and axis\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create simple line plot\n<\/span>ax. <span style=\"color: #3366ff;\">plot<\/span> ([0, 10],[0, 20])\n\n<span style=\"color: #008080;\">#set aspect ratio to 1\n<\/span>ratio = 1.0\nx_left, x_right = ax. <span style=\"color: #3366ff;\">get_xlim<\/span> ()\ny_low, y_high = ax. <span style=\"color: #3366ff;\">get_ylim<\/span> ()\nax. <span style=\"color: #3366ff;\">set_aspect<\/span> ( <span style=\"color: #3366ff;\">abs<\/span> ((x_right-x_left)\/(y_low-y_high))*ratio)\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11843 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rapport-daspect3.png\" alt=\"\u00c7izim oranlar\u0131n\u0131 ayarlay\u0131n matplotlib\" width=\"295\" height=\"273\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Bu grafi\u011fin bekledi\u011fimiz en boy oran\u0131na sahip oldu\u011funu unutmay\u0131n. X ekseni ve y ekseni uzunluk olarak e\u015fittir.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>4. Ad\u0131m: En boy oran\u0131n\u0131 istedi\u011finiz gibi ayarlay\u0131n<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Y ekseninin x ekseninden daha uzun olmas\u0131n\u0131 istiyorsak en boy oran\u0131n\u0131n 1&#8217;den b\u00fcy\u00fck bir say\u0131 olmas\u0131n\u0131 basit\u00e7e belirtebiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib.pyplot <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define matplotlib figure and axis\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create simple line plot\n<\/span>ax. <span style=\"color: #3366ff;\">plot<\/span> ([0, 10],[0, 20])\n\n<span style=\"color: #008080;\">#set aspect ratio to 3\n<\/span>ratio = 3\nx_left, x_right = ax. <span style=\"color: #3366ff;\">get_xlim<\/span> ()\ny_low, y_high = ax. <span style=\"color: #3366ff;\">get_ylim<\/span> ()\nax. <span style=\"color: #3366ff;\">set_aspect<\/span> ( <span style=\"color: #3366ff;\">abs<\/span> ((x_right-x_left)\/(y_low-y_high))*ratio)\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11844 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aspectratio4.png\" alt=\"matplotlib resim format\u0131\" width=\"141\" height=\"277\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Y ekseninin x ekseninden daha k\u0131sa olmas\u0131n\u0131 istiyorsak en boy oran\u0131n\u0131n 1&#8217;den k\u00fc\u00e7\u00fck bir say\u0131 olmas\u0131n\u0131 basit\u00e7e belirtebiliriz:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">import<\/span> matplotlib.pyplot <span style=\"color: #008000;\">as<\/span> plt\n\n<span style=\"color: #008080;\">#define matplotlib figure and axis\n<\/span>fig, ax = plt. <span style=\"color: #3366ff;\">subplots<\/span> ()\n\n<span style=\"color: #008080;\">#create simple line plot\n<\/span>ax. <span style=\"color: #3366ff;\">plot<\/span> ([0, 10],[0, 20])\n\n<span style=\"color: #008080;\">#set aspect ratio to .3\n<\/span>ratio = .3\nx_left, x_right = ax. <span style=\"color: #3366ff;\">get_xlim<\/span> ()\ny_low, y_high = ax. <span style=\"color: #3366ff;\">get_ylim<\/span> ()\nax. <span style=\"color: #3366ff;\">set_aspect<\/span> ( <span style=\"color: #3366ff;\">abs<\/span> ((x_right-x_left)\/(y_low-y_high))*ratio)\n\n<span style=\"color: #008080;\">#displayplot\n<\/span>plt. <span style=\"color: #3366ff;\">show<\/span> ()<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-11845 \" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rapport-daspect5.png\" alt=\"Matplotlib x ekseni en boy oran\u0131 y ekseninden daha uzun\" width=\"402\" height=\"142\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><em>Daha fazla Matplotlib e\u011fitimini burada bulabilirsiniz.<\/em><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bir matplotlib grafi\u011finin en-boy oran\u0131 , eksen \u00f6l\u00e7eklendirmesinin en-boy oran\u0131n\u0131, yani y biriminin x birimine oran\u0131n\u0131 ifade eder. Bu oran matplotlib.axes.Axes.set_aspect() i\u015flevi kullan\u0131larak de\u011fi\u015ftirilebilir. Asl\u0131nda set_aspect() i\u015flevi asl\u0131nda veri koordinat sistemi ad\u0131 verilen sistemi de\u011fi\u015ftirir, ancak pratikte genellikle ekran koordinat sistemini de\u011fi\u015ftirmek isteriz. Bu d\u00f6n\u00fc\u015f\u00fcm\u00fc kolayla\u015ft\u0131rmak i\u00e7in \u015fu kod par\u00e7as\u0131n\u0131 kullanabiliriz: #define y-unit to x-unit [&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-1192","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>Matplotlib&#039;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Matplotlib&#039;de oranlar\u0131n nas\u0131l ayarlanaca\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\/en-boy-orani-matplotlib\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Matplotlib&#039;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Matplotlib&#039;de oranlar\u0131n nas\u0131l ayarlanaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T08:27:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aspectratio1.png\" \/>\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\/en-boy-orani-matplotlib\/\",\"url\":\"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/\",\"name\":\"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-27T08:27:48+00:00\",\"dateModified\":\"2023-07-27T08:27:48+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Matplotlib&#39;de oranlar\u0131n nas\u0131l ayarlanaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\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":"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials","description":"Bu e\u011fitimde Matplotlib&#39;de oranlar\u0131n nas\u0131l ayarlanaca\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\/en-boy-orani-matplotlib\/","og_locale":"tr_TR","og_type":"article","og_title":"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials","og_description":"Bu e\u011fitimde Matplotlib&#39;de oranlar\u0131n nas\u0131l ayarlanaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/","og_site_name":"Statorials","article_published_time":"2023-07-27T08:27:48+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/aspectratio1.png"}],"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\/en-boy-orani-matplotlib\/","url":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/","name":"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\u0131r - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-27T08:27:48+00:00","dateModified":"2023-07-27T08:27:48+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Matplotlib&#39;de oranlar\u0131n nas\u0131l ayarlanaca\u011f\u0131 birka\u00e7 \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/en-boy-orani-matplotlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Matplotlib&#39;de en boy oran\u0131 nas\u0131l ayarlan\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\/1192","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=1192"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/1192\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=1192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=1192"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=1192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}