{"id":2421,"date":"2023-07-22T08:36:27","date_gmt":"2023-07-22T08:36:27","guid":{"rendered":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/"},"modified":"2023-07-22T08:36:27","modified_gmt":"2023-07-22T08:36:27","slug":"pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/","title":{"rendered":"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin."},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Python 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> : Pandas data cast to numpy dtype of object. Check input data with\nnp.asarray(data).\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu hata, Python&#8217;da bir regresyon modeli uydurmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve modeli yerle\u015ftirmeden \u00f6nce kategorik de\u011fi\u015fkenleri <a href=\"https:\/\/statorials.org\/tr\/regresyon-kukla-degiskenleri\/\" target=\"_blank\" rel=\"noopener\">kukla de\u011fi\u015fkenlere<\/a> d\u00f6n\u00fc\u015ft\u00fcremedi\u011finizde 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 pandalara sahip oldu\u011fumuzu varsayal\u0131m DataFrame:<\/span><\/p>\n<pre style=\"background-color: #ececec; 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\n\n<span style=\"color: #008080;\">#createDataFrame\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ': ['A', 'A', 'A', 'A', 'B', 'B', 'B', 'B'],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4],\n                   ' <span style=\"color: #ff0000;\">rebounds<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ': [14, 19, 8, 12, 17, 19, 22, 25]})\n\n<span style=\"color: #008080;\">#view DataFrame\n<\/span>df\n\n\tteam assists rebounds points\n0 A 5 11 14\n1 To 7 8 19\n2 A 7 10 8\n3 to 9 6 12\n4 B 12 6 17\n5 B 9 5 19\n6 B 9 9 22\n7 B 4 12 25<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">\u015eimdi, tahmin de\u011fi\u015fkenleri olarak tak\u0131m, asist ve ribaundlar\u0131 ve <a href=\"https:\/\/statorials.org\/tr\/degiskenleri-aciklayici-yanitlar\/\" target=\"_blank\" rel=\"noopener\">tepki de\u011fi\u015fkeni<\/a> olarak da puanlar\u0131 kullanarak <a href=\"https:\/\/statorials.org\/tr\/coklu-dogrusal-regresyon\/\" target=\"_blank\" rel=\"noopener\">\u00e7oklu do\u011frusal regresyon modelini<\/a> uydurmaya \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;\"><span style=\"color: #000000;\"><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['points']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x = df[['team', 'assists', 'rebounds']]\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;\">#attempt to fit regression model\n<\/span>model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y,x). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #ff0000;\">ValueError<\/span> : Pandas data cast to numpy dtype of object. Check input data with\nnp.asarray(data).\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">&#8220;Tak\u0131m&#8221; de\u011fi\u015fkeni kategorik oldu\u011fundan ve regresyon modeline uymadan \u00f6nce onu kukla de\u011fi\u015fkene d\u00f6n\u00fc\u015ft\u00fcrmedi\u011fimizden hata 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 &#8220;team&#8221; de\u011fi\u015fkenini <a href=\"https:\/\/pandas.pydata.org\/docs\/reference\/api\/pandas.get_dummies.html\" target=\"_blank\" rel=\"noopener\">pandas.get_dummies()<\/a> i\u015flevini kullanarak yapay bir de\u011fi\u015fkene d\u00f6n\u00fc\u015ft\u00fcrmektir.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : Regresyon modellerindeki kukla de\u011fi\u015fkenler hakk\u0131nda h\u0131zl\u0131 bir bilgi tazelemesi i\u00e7in <a href=\"https:\/\/statorials.org\/tr\/pandalar-model-oluyor\/\" target=\"_blank\" rel=\"noopener\">bu e\u011fitime<\/a> g\u00f6z at\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod &#8220;tak\u0131m&#8221;\u0131n yapay bir de\u011fi\u015fkene nas\u0131l d\u00f6n\u00fc\u015ft\u00fcr\u00fclece\u011fini g\u00f6sterir:<\/span><\/p>\n<pre style=\"background-color: #ececec; 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\n\n<span style=\"color: #008080;\">#createDataFrame\n<\/span>df = pd. <span style=\"color: #3366ff;\">DataFrame<\/span> ({' <span style=\"color: #ff0000;\">team<\/span> ': ['A', 'A', 'A', 'A', 'B', 'B', 'B', 'B'],\n                   ' <span style=\"color: #ff0000;\">assists<\/span> ': [5, 7, 7, 9, 12, 9, 9, 4],\n                   ' <span style=\"color: #ff0000;\">rebounds<\/span> ': [11, 8, 10, 6, 6, 5, 9, 12],\n                   ' <span style=\"color: #ff0000;\">points<\/span> ': [14, 19, 8, 12, 17, 19, 22, 25]})\n\n<span style=\"color: #008080;\">#convert \"team\" to dummy variable\n<\/span>df = pd. <span style=\"color: #3366ff;\">get_dummies<\/span> (df, columns=[' <span style=\"color: #ff0000;\">team<\/span> '], drop_first= <span style=\"color: #008000;\">True<\/span> )\n\n<span style=\"color: #008080;\">#view updated DataFrame\n<\/span>df\n\n        assists rebounds points team_B\n0 5 11 14 0\n1 7 8 19 0\n2 7 10 8 0\n3 9 6 12 0\n4 12 6 17 1\n5 9 5 19 1\n6 9 9 22 1\n7 4 12 25 1<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">\u201cTak\u0131m\u201d s\u00fctunundaki de\u011ferler \u201cA\u201d ve \u201cB\u201dden 0 ve 1\u2019e d\u00f6n\u00fc\u015ft\u00fcr\u00fclm\u00fc\u015ft\u00fcr.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\">Art\u0131k yeni &#8220;team_B&#8221; de\u011fi\u015fkenini kullanarak \u00e7oklu do\u011frusal regresyon modelini yerle\u015ftirebiliriz:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008080;\"><span style=\"color: #000000;\"><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['points']\n\n<span style=\"color: #008080;\">#define predictor variables\n<\/span>x = df[['team_B', 'assists', 'rebounds']]\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 regression model\n<\/span>model = sm. <span style=\"color: #3366ff;\">OLS<\/span> (y,x). <span style=\"color: #3366ff;\">fit<\/span> ()\n\n<span style=\"color: #008080;\">#view summary of model fit\n<\/span><span style=\"color: #008000;\">print<\/span> ( <span style=\"color: #3366ff;\">model.summary<\/span> ())\n\n                            OLS Regression Results                            \n==================================================== ============================\nDept. Variable: R-squared points: 0.701\nModel: OLS Adj. R-squared: 0.476\nMethod: Least Squares F-statistic: 3.119\nDate: Thu, 11 Nov 2021 Prob (F-statistic): 0.150\nTime: 14:49:53 Log-Likelihood: -19.637\nNo. Observations: 8 AIC: 47.27\nDf Residuals: 4 BIC: 47.59\nDf Model: 3                                         \nCovariance Type: non-robust                                         \n==================================================== ============================\n                 coef std err t P&gt;|t| [0.025 0.975]\n-------------------------------------------------- ----------------------------\nconst 27.1891 17.058 1.594 0.186 -20.171 74.549\nteam_B 9.1288 3.032 3.010 0.040 0.709 17.548\nassists -1.3445 1.148 -1.171 0.307 -4.532 1.843\nrebounds -0.5174 1.099 -0.471 0.662 -3.569 2.534\n==================================================== ============================\nOmnibus: 0.691 Durbin-Watson: 3.075\nProb(Omnibus): 0.708 Jarque-Bera (JB): 0.145\nSkew: 0.294 Prob(JB): 0.930\nKurtosis: 2.698 Cond. No. 140.\n==================================================== ============================\n<\/span><\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Bu sefer regresyon modelini hatas\u0131z bir \u015fekilde s\u0131\u011fd\u0131rabildi\u011fimizi unutmay\u0131n.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Not<\/strong> : <strong>Ols()<\/strong> i\u015flevine ili\u015fkin t\u00fcm belgeleri <a href=\"https:\/\/www.statsmodels.org\/dev\/examples\/notebooks\/generated\/ols.html\" target=\"_blank\" rel=\"noopener\">buradaki<\/a> statsmodels kitapl\u0131\u011f\u0131nda bulabilirsiniz.<\/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\/pandalarin-anahtar-hatasi\/\" target=\"_blank\" rel=\"noopener\">Pandas&#8217;ta KeyError Nas\u0131l D\u00fczeltilir<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/deger-hatasi-kayan-noktali-nani-tam-sayiya-donusturemiyor\/\" target=\"_blank\" rel=\"noopener\">Nas\u0131l d\u00fczeltilir? ValueError: float NaN int&#8217;ye d\u00f6n\u00fc\u015ft\u00fcr\u00fclemiyor<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/islenenler-formlarla-yayinlanamadi\/\" target=\"_blank\" rel=\"noopener\">Nas\u0131l d\u00fczeltilir? ValueError: \u0130\u015flenenler \u015fekillerle yay\u0131nlanamad\u0131<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python kullan\u0131rken kar\u015f\u0131la\u015fabilece\u011finiz bir hata: ValueError : Pandas data cast to numpy dtype of object. Check input data with np.asarray(data). Bu hata, Python&#8217;da bir regresyon modeli uydurmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131n\u0131zda ve modeli yerle\u015ftirmeden \u00f6nce kategorik de\u011fi\u015fkenleri kukla de\u011fi\u015fkenlere d\u00f6n\u00fc\u015ft\u00fcremedi\u011finizde 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 pandalara sahip oldu\u011fumuzu [&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-2421","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: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.\" \/>\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\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/\" \/>\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: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-22T08:36:27+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\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/\",\"url\":\"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/\",\"name\":\"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-22T08:36:27+00:00\",\"dateModified\":\"2023-07-22T08:36:27+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.\"}]},{\"@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: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials","description":"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.","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\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/","og_locale":"tr_TR","og_type":"article","og_title":"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials","og_description":"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.","og_url":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/","og_site_name":"Statorials","article_published_time":"2023-07-22T08:36:27+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\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/","url":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/","name":"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. Giri\u015f verilerini np.asarray(data) ile kontrol edin. - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-22T08:36:27+00:00","dateModified":"2023-07-22T08:36:27+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde \u015fu hatan\u0131n nas\u0131l d\u00fczeltilece\u011fi a\u00e7\u0131klanmaktad\u0131r: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/pandalarin-verileri-np-asarraydata-ile-nesne-kontrolu-giris-verilerinin-numpy-tipine-aktariliyor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Nas\u0131l d\u00fczeltilir: panda verileri numpy nesne t\u00fcr\u00fcne d\u00f6n\u00fc\u015ft\u00fcr\u00fcl\u00fcr. giri\u015f verilerini np.asarray(data) ile kontrol edin."}]},{"@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\/2421","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=2421"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2421\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2421"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2421"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2421"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}