{"id":1638,"date":"2023-07-25T13:50:04","date_gmt":"2023-07-25T13:50:04","guid":{"rendered":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/"},"modified":"2023-07-25T13:50:04","modified_gmt":"2023-07-25T13:50:04","slug":"breusch-godfrey-test-pitonu","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/","title":{"rendered":"Python&#39;da breusch-godfrey testi nas\u0131l yap\u0131l\u0131r?"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/tr\/dogrusal-regresyon-varsayimlari\/\" target=\"_blank\" rel=\"noopener\">Do\u011frusal regresyonun temel varsay\u0131mlar\u0131ndan<\/a> biri, art\u0131klar aras\u0131nda herhangi bir korelasyonun olmamas\u0131, yani art\u0131klar\u0131n ba\u011f\u0131ms\u0131z olmas\u0131d\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Birinci dereceden otokorelasyonu test etmek i\u00e7in <a href=\"https:\/\/statorials.org\/tr\/durbin-watson-test-pitonu\/\" target=\"_blank\" rel=\"noopener\">Durbin-Watson testi<\/a> yapabiliriz. Ancak otokorelasyonu daha y\u00fcksek derecelerde test etmek istiyorsak <strong>Breusch-Godfrey testi<\/strong> yapmam\u0131z gerekir.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu test a\u015fa\u011f\u0131daki <a href=\"https:\/\/statorials.org\/tr\/hipotez-testi-1\/\" target=\"_blank\" rel=\"noopener\">varsay\u0131mlar\u0131<\/a> kullan\u0131r:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub> (s\u0131f\u0131r hipotezi):<\/strong> p&#8217;den k\u00fc\u00e7\u00fck veya <em>p&#8217;ye<\/em> e\u015fit bir otokorelasyon yoktur.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong><sub>HA<\/sub> (alternatif hipotez):<\/strong> p&#8217;den k\u00fc\u00e7\u00fck veya <em>p&#8217;ye<\/em> e\u015fit belirli bir d\u00fczeyde otokorelasyon vard\u0131r.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Test istatisti\u011fi, <em>p<\/em> serbestlik derecesine sahip bir Ki-kare da\u011f\u0131l\u0131m\u0131n\u0131 takip eder.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bu test istatisti\u011fine kar\u015f\u0131l\u0131k gelen <a href=\"https:\/\/statorials.org\/tr\/p-degerleri-istatistiksel-anlamlilik\/\" target=\"_blank\" rel=\"noopener\">p de\u011feri<\/a> belirli bir anlaml\u0131l\u0131k d\u00fczeyinin (\u00f6rne\u011fin 0,05) alt\u0131ndaysa, o zaman s\u0131f\u0131r hipotezini reddedebilir ve art\u0131klar aras\u0131nda belirli bir d\u00fc\u015f\u00fck d\u00fczeyde veya <em>p&#8217;ye<\/em> e\u015fit bir otokorelasyonun var oldu\u011fu sonucuna varabiliriz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Python&#8217;da Breusch-Godfrey testi ger\u00e7ekle\u015ftirmek i\u00e7in <b>statsmodels<\/b> k\u00fct\u00fcphanesindeki <strong>acorr_breusch_godfrey()<\/strong> fonksiyonunu kullanabilirsiniz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki ad\u0131m ad\u0131m \u00f6rnek, Python&#8217;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fini a\u00e7\u0131klamaktad\u0131r.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>1. Ad\u0131m: Verileri olu\u015fturun<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">\u00d6ncelikle iki \u00f6ng\u00f6r\u00fcc\u00fc de\u011fi\u015fken (x1 ve x2) ve bir yan\u0131t de\u011fi\u015fkeni (y) i\u00e7eren bir veri k\u00fcmesi olu\u015ftural\u0131m.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> pandas <span style=\"color: #008000;\">as<\/span> pd<\/span>\n\n#create dataset<\/span>\ndf = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">x1<\/span> ': [3, 4, 4, 5, 8, 9, 11, 13, 14, 16, 17, 20],\n                   ' <span style=\"color: #ff0000;\">x2<\/span> ': [7, 7, 8, 8, 12, 4, 5, 15, 9, 17, 19, 19],\n                    ' <span style=\"color: #ff0000;\">y<\/span> ': [24, 25, 25, 27, 29, 31, 34, 34, 39, 30, 40, 49]})\n\n<span style=\"color: #008080;\">#view first five rows of dataset\n<\/span>df. <span style=\"color: #3366ff;\">head<\/span> ()\n\n\tx1 x2 y\n0 3 7 24\n1 4 7 25\n2 4 8 25\n3 5 8 27\n4 8 12 29\n<\/strong><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Ad\u0131m 2: Bir regresyon modeli yerle\u015ftirin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Daha sonra, yorday\u0131c\u0131 de\u011fi\u015fkenler olarak x1 ve x2&#8217;yi ve <a href=\"https:\/\/statorials.org\/tr\/degiskenleri-aciklayici-yanitlar\/\" target=\"_blank\" rel=\"noopener\">yan\u0131t de\u011fi\u015fkeni<\/a> olarak y&#8217;yi kullanarak <a href=\"https:\/\/statorials.org\/tr\/coklu-dogrusal-regresyon\/\" target=\"_blank\" rel=\"noopener\">\u00e7oklu do\u011frusal regresyon modelini<\/a> yerle\u015ftirebiliriz.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">api<\/span> <span style=\"color: #008000;\">as<\/span> sm\n\n<span style=\"color: #008080;\">#define response variable\n<\/span>y = df[' <span style=\"color: #ff0000;\">y<\/span> ']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x = df[[' <span style=\"color: #ff0000;\">x1<\/span> ', ' <span style=\"color: #ff0000;\">x2<\/span> ']]\n\n<span style=\"color: #008080;\">#add constant to predictor variables\n<\/span>x = sm. <span style=\"color: #3366ff;\">add_constant<\/span> (x)\n\n<span style=\"color: #008080;\">#fit linear regression model\n<\/span>model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y,x). <span style=\"color: #3366ff;\">fit<\/span> ()\n<\/strong><\/span><\/pre>\n<h3> <span style=\"color: #000000;\"><strong>Ad\u0131m 3: Breusch-Godfrey testini ger\u00e7ekle\u015ftirin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Daha sonra <em>p<\/em> d\u00fczeyindeki art\u0131klar aras\u0131ndaki otokorelasyonu test etmek i\u00e7in Breusch-Godfrey testini ger\u00e7ekle\u015ftirece\u011fiz. Bu \u00f6rnek i\u00e7in <em>p<\/em> = 3&#8217;\u00fc se\u00e7ece\u011fiz.<\/span><\/p>\n<pre style=\"background-color: #e5e5e5; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\">import<\/span> statsmodels. <span style=\"color: #3366ff;\">stats<\/span> . <span style=\"color: #3366ff;\">diagnosis<\/span> <span style=\"color: #008000;\">as<\/span> dg\n<\/span>\n#perform Breusch-Godfrey test at order <em>p<\/em> = 3\n<span style=\"color: #000000;\"><span style=\"color: #993300;\">print<\/span> (dg. <span style=\"color: #3366ff;\">acorr_breusch_godfrey<\/span> (model, nlags= <span style=\"color: #008000;\">3<\/span> ))\n\n(8.70314827, 0.0335094873, 5.27967224, 0.0403980576)\n<\/span><\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">\u00c7\u0131k\u0131\u015f\u0131n ilk de\u011feri test istatisti\u011fini, ikinci de\u011feri ise kar\u015f\u0131l\u0131k gelen p de\u011ferini temsil eder.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Sonu\u00e7tan \u015funlar\u0131 g\u00f6rebiliriz:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Test istatisti\u011fi X <sup>2<\/sup> = <strong>8,7031<\/strong><\/span><\/li>\n<li> <span style=\"color: #000000;\">P de\u011feri = <strong>0,0335<\/strong><\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Bu p de\u011feri 0,05&#8217;ten k\u00fc\u00e7\u00fck oldu\u011fundan s\u0131f\u0131r hipotezini reddedebilir ve 3&#8217;ten k\u00fc\u00e7\u00fck veya ona e\u015fit olan s\u0131radaki art\u0131klar aras\u0131nda bir otokorelasyon oldu\u011fu sonucuna varabiliriz.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Otokorelasyonla nas\u0131l ba\u015fa \u00e7\u0131k\u0131l\u0131r?<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">S\u0131f\u0131r hipotezini reddederseniz ve art\u0131klarda otokorelasyonun mevcut oldu\u011fu sonucuna var\u0131rsan\u0131z, yeterince ciddi oldu\u011funu d\u00fc\u015f\u00fcn\u00fcyorsan\u0131z bu sorunu d\u00fczeltmek i\u00e7in birka\u00e7 se\u00e7ene\u011finiz vard\u0131r:<\/span><\/p>\n<ul data-slot-rendered-dynamic=\"true\">\n<li> <span style=\"color: #000000;\">Pozitif seri korelasyon i\u00e7in ba\u011f\u0131ml\u0131 ve\/veya ba\u011f\u0131ms\u0131z de\u011fi\u015fkenin gecikmelerini modele eklemeyi d\u00fc\u015f\u00fcn\u00fcn.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Negatif seri korelasyon i\u00e7in de\u011fi\u015fkenlerinizden hi\u00e7birinin <em>a\u015f\u0131r\u0131 gecikmedi\u011finden<\/em> emin olun.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Mevsimsel korelasyon i\u00e7in modele mevsimsel kuklalar eklemeyi d\u00fc\u015f\u00fcn\u00fcn.<\/span><\/li>\n<\/ul>\n<h3> <span style=\"color: #000000;\"><strong>Ek kaynaklar<\/strong><\/span><\/h3>\n<p> <a href=\"https:\/\/statorials.org\/tr\/dogrusal-regresyon-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da Do\u011frusal Regresyon \u0130\u00e7in Tam Bir K\u0131lavuz<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/durbin-watson-test-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da Durbin-Watson testi nas\u0131l yap\u0131l\u0131r?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/ljung-kutusu-testi-pitonu\/\" target=\"_blank\" rel=\"noopener\">Python&#8217;da Ljung-Box testi nas\u0131l yap\u0131l\u0131r<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do\u011frusal regresyonun temel varsay\u0131mlar\u0131ndan biri, art\u0131klar aras\u0131nda herhangi bir korelasyonun olmamas\u0131, yani art\u0131klar\u0131n ba\u011f\u0131ms\u0131z olmas\u0131d\u0131r. Birinci dereceden otokorelasyonu test etmek i\u00e7in Durbin-Watson testi yapabiliriz. Ancak otokorelasyonu daha y\u00fcksek derecelerde test etmek istiyorsak Breusch-Godfrey testi yapmam\u0131z gerekir. Bu test a\u015fa\u011f\u0131daki varsay\u0131mlar\u0131 kullan\u0131r: H 0 (s\u0131f\u0131r hipotezi): p&#8217;den k\u00fc\u00e7\u00fck veya p&#8217;ye e\u015fit bir otokorelasyon yoktur. HA (alternatif [&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-1638","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 Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde Python&#039;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \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\/breusch-godfrey-test-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 Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde Python&#039;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-25T13:50:04+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\/breusch-godfrey-test-pitonu\/\",\"url\":\"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/\",\"name\":\"Python&#39;da Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-25T13:50:04+00:00\",\"dateModified\":\"2023-07-25T13:50:04+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde Python&#39;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python&#39;da breusch-godfrey testi nas\u0131l yap\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 Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials","description":"Bu e\u011fitimde Python&#39;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \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\/breusch-godfrey-test-pitonu\/","og_locale":"tr_TR","og_type":"article","og_title":"Python&#39;da Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials","og_description":"Bu e\u011fitimde Python&#39;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/","og_site_name":"Statorials","article_published_time":"2023-07-25T13:50:04+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\/breusch-godfrey-test-pitonu\/","url":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/","name":"Python&#39;da Breusch-Godfrey testi nas\u0131l yap\u0131l\u0131r - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-25T13:50:04+00:00","dateModified":"2023-07-25T13:50:04+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde Python&#39;da Breusch-Godfrey testinin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi bir \u00f6rnekle a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/breusch-godfrey-test-pitonu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Python&#39;da breusch-godfrey testi nas\u0131l yap\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\/1638","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=1638"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/1638\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=1638"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=1638"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=1638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}