{"id":2570,"date":"2023-07-21T16:53:51","date_gmt":"2023-07-21T16:53:51","guid":{"rendered":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/"},"modified":"2023-07-21T16:53:51","modified_gmt":"2023-07-21T16:53:51","slug":"hava-kilidi-icerir","status":"publish","type":"post","link":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/","title":{"rendered":"Sas: dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Belirli dizeleri i\u00e7eren sat\u0131rlara ili\u015fkin SAS veri k\u00fcmelerini filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Belirli bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*filter rows where var1 contains \"string1\"*\/\n<\/span><span style=\"color: #800080;\">data<\/span> specific_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    <span style=\"color: #3366ff;\">where<\/span> var1 <span style=\"color: #3366ff;\">contains<\/span> ' <span style=\"color: #ff0000;\">string1<\/span> ';\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Bir dizeyi i\u00e7eren sat\u0131r\u0131 birka\u00e7 dize aras\u0131ndan filtreleyin<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*filter rows where var1 contains \"string1\", \"string2\", or \"string3\"*\/\n<\/span><span style=\"color: #800080;\">data<\/span> specific_data;\n    <span style=\"color: #3366ff;\">set<\/span> original_data;\n    <span style=\"color: #3366ff;\">where<\/span> var1 in (' <span style=\"color: #ff0000;\">string1<\/span> ', ' <span style=\"color: #ff0000;\">string2<\/span> ', ' <span style=\"color: #ff0000;\">string3<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki \u00f6rnekler, SAS&#8217;ta her y\u00f6ntemin a\u015fa\u011f\u0131daki veri k\u00fcmesiyle 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;\">\/*create dataset*\/\n<span style=\"color: #000000;\"><span style=\"color: #800080;\">data<\/span> nba_data;\n    <span style=\"color: #3366ff;\">input<\/span> team $points;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nMavs 95\nSpurs 99\nWarriors 104\nRockets 98\nHeat 95\nNets 90\nMagic 99\nCavs 106\n;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view dataset*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =nba_data;\n<\/span><\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-22807 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/contient1-1.jpg\" alt=\"\" width=\"181\" height=\"237\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 1: Belirli bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, <strong>ekip<\/strong> s\u00fctununda &#8220;avs&#8221; dizesini i\u00e7eren sat\u0131rlar i\u00e7in veri k\u00fcmesinin nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span><\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*filter rows where team contains the string 'avs'*\/\n<\/span><span style=\"color: #000000;\"><span style=\"color: #800080;\">data<\/span> specific_data;\n    <span style=\"color: #3366ff;\">set<\/span> nba_data;\n    <span style=\"color: #3366ff;\">where<\/span> team <span style=\"color: #3366ff;\">contains<\/span> ' <span style=\"color: #ff0000;\">avs<\/span> ';\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view resulting rows*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = specific_data;\n<\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-22808 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/contient2-1.jpg\" alt=\"\" width=\"158\" height=\"88\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">G\u00f6sterilen yaln\u0131zca iki sat\u0131r, <strong>tak\u0131m<\/strong> s\u00fctununun ad\u0131nda &#8220;avs&#8221; bulunan sat\u0131rlard\u0131r.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Y\u00f6ntem 2: Birka\u00e7 dizeden birini i\u00e7eren sat\u0131rlar\u0131 filtreleyin<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki kod, <strong>ekip<\/strong> s\u00fctununda &#8220;Mavs&#8221;, &#8220;Nets&#8221; veya &#8220;Rockets&#8221; dizelerini i\u00e7eren sat\u0131rlar i\u00e7in veri k\u00fcmesinin nas\u0131l filtrelenece\u011fini g\u00f6sterir:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*filter rows where team contains the string 'Mavs', 'Nets', or 'Rockets'*\/\n<\/span><span style=\"color: #000000;\"><span style=\"color: #800080;\">data<\/span> specific_data;\n    <span style=\"color: #3366ff;\">set<\/span> nba_data;\n    <span style=\"color: #3366ff;\">where<\/span> team in (' <span style=\"color: #ff0000;\">Mavs<\/span> ', ' <span style=\"color: #ff0000;\">Nets<\/span> ', ' <span style=\"color: #ff0000;\">Rockets<\/span> ');\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view resulting rows*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> = specific_data;\n<\/span><\/strong><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-22809 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/contient3-1.jpg\" alt=\"\" width=\"178\" height=\"109\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Ortaya \u00e7\u0131kan veri k\u00fcmesi yaln\u0131zca <strong>ekip<\/strong> s\u00fctununun belirtti\u011fimiz \u00fc\u00e7 dizeden birini i\u00e7erdi\u011fi sat\u0131rlar\u0131 g\u00f6r\u00fcnt\u00fcler.<\/span><\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong><span style=\"color: #000000;\">Ek kaynaklar<\/span><\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">A\u015fa\u011f\u0131daki e\u011fitimlerde SAS&#8217;ta di\u011fer ortak g\u00f6revlerin nas\u0131l ger\u00e7ekle\u015ftirilece\u011fi a\u00e7\u0131klanmaktad\u0131r:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/tr\/hava-kilidindeki-verileri-normallestir\/\" target=\"_blank\" rel=\"noopener\">SAS&#8217;ta veriler nas\u0131l normalle\u015ftirilir?<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/sas-degiskenleri-yeniden-adlandirma\/\" target=\"_blank\" rel=\"noopener\">SAS&#8217;ta de\u011fi\u015fkenler nas\u0131l yeniden adland\u0131r\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/kopyalari-kaldirmayin\/\" target=\"_blank\" rel=\"noopener\">SAS&#8217;ta kopyalar nas\u0131l kald\u0131r\u0131l\u0131r<\/a><br \/> <a href=\"https:\/\/statorials.org\/tr\/eksik-degerleri-sifirla-degistirmeden\/\" target=\"_blank\" rel=\"noopener\">SAS&#8217;ta eksik de\u011ferler s\u0131f\u0131rla nas\u0131l de\u011fi\u015ftirilir?<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Belirli dizeleri i\u00e7eren sat\u0131rlara ili\u015fkin SAS veri k\u00fcmelerini filtrelemek i\u00e7in a\u015fa\u011f\u0131daki y\u00f6ntemleri kullanabilirsiniz: Y\u00f6ntem 1: Belirli bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin \/*filter rows where var1 contains &#8220;string1&#8243;*\/ data specific_data; set original_data; where var1 contains &#8216; string1 &#8216;; run ; Y\u00f6ntem 2: Bir dizeyi i\u00e7eren sat\u0131r\u0131 birka\u00e7 dize aras\u0131ndan filtreleyin \/*filter rows where var1 contains &#8220;string1&#8221;, [&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-2570","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>SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi 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\/hava-kilidi-icerir\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi a\u00e7\u0131klanmaktad\u0131r.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T16:53:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/contient1-1.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\/hava-kilidi-icerir\/\",\"url\":\"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/\",\"name\":\"SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/tr\/#website\"},\"datePublished\":\"2023-07-21T16:53:51+00:00\",\"dateModified\":\"2023-07-21T16:53:51+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48\"},\"description\":\"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi a\u00e7\u0131klanmaktad\u0131r.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/statorials.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sas: dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin\"}]},{\"@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":"SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials","description":"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi 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\/hava-kilidi-icerir\/","og_locale":"tr_TR","og_type":"article","og_title":"SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials","og_description":"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi a\u00e7\u0131klanmaktad\u0131r.","og_url":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/","og_site_name":"Statorials","article_published_time":"2023-07-21T16:53:51+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/contient1-1.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\/hava-kilidi-icerir\/","url":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/","name":"SAS: bir dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/tr\/#website"},"datePublished":"2023-07-21T16:53:51+00:00","dateModified":"2023-07-21T16:53:51+00:00","author":{"@id":"https:\/\/statorials.org\/tr\/#\/schema\/person\/365dc158a39a7c8ae256355451e3de48"},"description":"Bu e\u011fitimde, belirli bir dize i\u00e7eren sat\u0131rlar i\u00e7in bir SAS veri k\u00fcmesinin nas\u0131l filtrelenece\u011fi a\u00e7\u0131klanmaktad\u0131r.","breadcrumb":{"@id":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/tr\/hava-kilidi-icerir\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/statorials.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Sas: dize i\u00e7eren sat\u0131rlar\u0131 filtreleyin"}]},{"@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\/2570","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=2570"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/posts\/2570\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/media?parent=2570"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/categories?post=2570"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/tr\/wp-json\/wp\/v2\/tags?post=2570"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}