{"id":4438,"date":"2023-07-11T03:04:56","date_gmt":"2023-07-11T03:04:56","guid":{"rendered":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/"},"modified":"2023-07-11T03:04:56","modified_gmt":"2023-07-11T03:04:56","slug":"sas-proc-surveyselect","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/","title":{"rendered":"Verwendung von proc surveyselect in sas (mit beispielen)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Sie k\u00f6nnen <strong>PROC SURVEYSELECT<\/strong> verwenden, um eine Zufallsstichprobe aus einem Datensatz in SAS auszuw\u00e4hlen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Hier sind drei g\u00e4ngige M\u00f6glichkeiten, dieses Verfahren in der Praxis anzuwenden:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 1: Verwenden Sie PROC SURVEYSELECT, um eine einfache Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data\n<span style=\"color: #3366ff;\">out<\/span> =my_sample\n    <span style=\"color: #3366ff;\">method<\/span> =srs <span style=\"color: #008000;\">\/*use simple random sampling*\/<\/span>\n    <span style=\"color: #3366ff;\">n<\/span> =5 <span style=\"color: #008000;\">\/*select a total of 5 observations*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> =1; <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> ;\n<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">In diesem speziellen Beispiel werden 5 zuf\u00e4llige Beobachtungen aus dem Datensatz ausgew\u00e4hlt.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 2: Verwenden Sie PROC SURVEYSELECT, um eine geschichtete Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data\n<span style=\"color: #3366ff;\">out<\/span> =my_sample\n    <span style=\"color: #3366ff;\">method<\/span> =srs <span style=\"color: #008000;\">\/*use simple random sampling*\/<\/span>\n    <span style=\"color: #3366ff;\">n<\/span> =2 <span style=\"color: #008000;\">\/*select 2 observations from each strata*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> =1; <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/\n<\/span><span style=\"color: #3366ff;\">strata<\/span> grouping_var; <span style=\"color: #008000;\">\/*specify variable to use for stratification*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">In diesem speziellen Beispiel werden zwei zuf\u00e4llige Beobachtungen aus jeder einzelnen Schicht des Datensatzes ausgew\u00e4hlt.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die <strong>strata-<\/strong> Anweisung gibt die Variable an, die f\u00fcr die Schichtung verwendet werden soll.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Beispiel 3: Verwenden Sie PROC SURVEYSELECT, um eine gepoolte Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> <span style=\"color: #000000;\">=my_data\n<\/span><span style=\"color: #3366ff;\">out<\/span> <span style=\"color: #000000;\">=my_sample\n    <\/span><span style=\"color: #3366ff;\">n<\/span> <span style=\"color: #000000;\">=2<\/span> <span style=\"color: #008000;\">\/*select 2 clusters*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> <span style=\"color: #000000;\">=1;<\/span> <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/\n<\/span><span style=\"color: #3366ff;\">clustergrouping_var<\/span> <span style=\"color: #000000;\">;<\/span> <span style=\"color: #008000;\">\/*specify variable to use for stratification*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> <span style=\"color: #000000;\">;<\/span><\/strong><\/span><\/pre>\n<p> <span style=\"color: #000000;\">In diesem speziellen Beispiel werden zwei zuf\u00e4llige Cluster aus dem Datensatz ausgew\u00e4hlt und jede Beobachtung aus jedem Cluster in der Stichprobe einbezogen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die <b>Cluster-<\/b> Anweisung gibt die Variable an, die f\u00fcr das Clustering verwendet werden soll.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Die folgenden Beispiele zeigen, wie jede Methode in der Praxis mit dem folgenden Datensatz in SAS verwendet wird, der Informationen \u00fcber Basketballspieler verschiedener Teams enth\u00e4lt:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*create dataset*\/\n<\/span><span style=\"color: #800080;\">data<\/span> my_data;\n    <span style=\"color: #3366ff;\">input<\/span> team $points;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nAT 12\nAt 14\nAt 22\nAt 35\nAt 40\nB 12\nB 10\nB29\nB 33\nC40\nC25\nC 11\nC 10\nC15\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> = my_data;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-34757 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs1.png\" alt=\"\" width=\"178\" height=\"378\" srcset=\"\" sizes=\"\"><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Beispiel 1: Verwenden Sie PROC SURVEYSELECT, um eine einfache Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die folgende Syntax verwenden, um eine <a href=\"https:\/\/statorials.org\/de\/probenahmemethoden\/\" target=\"_blank\" rel=\"noopener\">einfache Zufallsstichprobe<\/a> von 5 Beobachtungen aus dem Datensatz auszuw\u00e4hlen:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data\n<span style=\"color: #3366ff;\">out<\/span> =my_sample\n    <span style=\"color: #3366ff;\">method<\/span> =srs <span style=\"color: #008000;\">\/*use simple random sampling*\/<\/span>\n    <span style=\"color: #3366ff;\">n<\/span> =5 <span style=\"color: #008000;\">\/*select a total of 5 observations*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> =1; <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view sample*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_sample;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-34758 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs2.png\" alt=\"\" width=\"172\" height=\"173\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Die resultierende Stichprobe enth\u00e4lt 5 <a href=\"https:\/\/statorials.org\/de\/beobachtung-in-der-statistik\/\" target=\"_blank\" rel=\"noopener\">Beobachtungen,<\/a> die zuf\u00e4llig aus dem Datensatz ausgew\u00e4hlt wurden.<\/span><\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Beispiel 2: Verwenden Sie PROC SURVEYSELECT, um eine geschichtete Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die folgende Syntax verwenden, um eine geschichtete Zufallsstichprobe durchzuf\u00fchren, bei der aus jedem Team zwei Beobachtungen zuf\u00e4llig ausgew\u00e4hlt werden, um in die Stichprobe aufgenommen zu werden:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data\n<span style=\"color: #3366ff;\">out<\/span> =my_sample\n    <span style=\"color: #3366ff;\">method<\/span> =srs <span style=\"color: #008000;\">\/*use simple random sampling within strata*\/<\/span>\n    <span style=\"color: #3366ff;\">n<\/span> =2 <span style=\"color: #008000;\">\/*select 2 observations from each strata*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> =1; <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/\n<\/span><span style=\"color: #3366ff;\">strata<\/span> grouping_var; <span style=\"color: #008000;\">\/*specify variable to use for stratification*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view sample*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_sample;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-34759 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs3.png\" alt=\"\" width=\"398\" height=\"198\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Die resultierende Stichprobe enth\u00e4lt zwei zuf\u00e4llig ausgew\u00e4hlte <a href=\"https:\/\/statorials.org\/de\/beobachtung-in-der-statistik\/\" target=\"_blank\" rel=\"noopener\">Beobachtungen<\/a> von jedem Team.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Verwandte Themen:<\/strong> <a href=\"https:\/\/statorials.org\/de\/cluster-stichprobe-vs.-geschichtete-stichprobe\/\" target=\"_blank\" rel=\"noopener\">Cluster-Sampling und geschichtete Sampling: Was ist der Unterschied?<\/a><\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Beispiel 3: Verwenden Sie PROC SURVEYSELECT, um eine gepoolte Zufallsstichprobe auszuw\u00e4hlen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die folgende Syntax verwenden, um eine Cluster-Zufallsstichprobe durchzuf\u00fchren, bei der wir Teams als Cluster verwenden, zuf\u00e4llig zwei Cluster ausw\u00e4hlen und jede Beobachtung aus diesen Clustern in die Stichprobe aufnehmen:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #800080;\">proc surveyselect<\/span> <span style=\"color: #3366ff;\">data<\/span> <span style=\"color: #000000;\">=my_data\n<\/span><span style=\"color: #3366ff;\">out<\/span> <span style=\"color: #000000;\">=my_sample\n    <\/span><span style=\"color: #3366ff;\">n<\/span> <span style=\"color: #000000;\">=2<\/span> <span style=\"color: #008000;\">\/*select a total of 2 clusters*\/<\/span>\n    <span style=\"color: #3366ff;\">seed<\/span> <span style=\"color: #000000;\">=1;<\/span> <span style=\"color: #008000;\">\/*set seed to make this example reproducible*\/\n<\/span><span style=\"color: #3366ff;\">clustergrouping_var<\/span> <span style=\"color: #000000;\">;<\/span> <span style=\"color: #008000;\">\/*specify variable to use for clustering*\/<\/span>\n<span style=\"color: #800080;\">run<\/span> <span style=\"color: #000000;\">;\n\n<\/span><span style=\"color: #008000;\">\/*view sample*\/<\/span>\n<span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> <span style=\"color: #000000;\">=my_sample;\n<\/span><\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-34760 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs4.png\" alt=\"\" width=\"181\" height=\"283\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\"><span style=\"color: #000000;\">Diese spezielle Stichprobe enth\u00e4lt alle Beobachtungen der Teams A und B, die die beiden zuf\u00e4llig ausgew\u00e4hlten \u201eCluster\u201c waren.<\/span><\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Hinweis<\/strong> : Die vollst\u00e4ndige <strong>PROC SURVEYSELECT-<\/strong> Dokumentation finden Sie <a href=\"https:\/\/documentation.sas.com\/doc\/en\/statcdc\/14.2\/statug\/statug_surveyselect_syntax01.htm\" target=\"_blank\" rel=\"noopener\">hier<\/a> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Zus\u00e4tzliche Ressourcen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">In den folgenden Tutorials wird erl\u00e4utert, wie Sie andere h\u00e4ufige Aufgaben in SAS ausf\u00fchren:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/de\/beschreibende-statistik-in-sas\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie deskriptive Statistiken in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/sas-frequenztabelle\/\" target=\"_blank\" rel=\"noopener\">So erstellen Sie H\u00e4ufigkeitstabellen in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/sas-perzentile\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie Perzentile in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/pivot-tabelle-sas\/\" target=\"_blank\" rel=\"noopener\">So erstellen Sie PivotTables in SAS<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sie k\u00f6nnen PROC SURVEYSELECT verwenden, um eine Zufallsstichprobe aus einem Datensatz in SAS auszuw\u00e4hlen. Hier sind drei g\u00e4ngige M\u00f6glichkeiten, dieses Verfahren in der Praxis anzuwenden: Beispiel 1: Verwenden Sie PROC SURVEYSELECT, um eine einfache Zufallsstichprobe auszuw\u00e4hlen proc surveyselect data =my_data out =my_sample method =srs \/*use simple random sampling*\/ n =5 \/*select a total of 5 [&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":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.\" \/>\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\/de\/sas-proc-surveyselect\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-11T03:04:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs1.png\" \/>\n<meta name=\"author\" content=\"Dr. Benjamin Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr. Benjamin Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/\",\"url\":\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/\",\"name\":\"Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-11T03:04:56+00:00\",\"dateModified\":\"2023-07-11T03:04:56+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Verwendung von proc surveyselect in sas (mit beispielen)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/de\/#website\",\"url\":\"https:\/\/statorials.org\/de\/\",\"name\":\"Statorials\",\"description\":\"Ihr Leitfaden f\u00fcr statistische Kompetenz !\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\",\"name\":\"Dr. Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. Benjamin Anderson\"},\"description\":\"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen\",\"sameAs\":[\"https:\/\/statorials.org\/de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik","description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.","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\/de\/sas-proc-surveyselect\/","og_locale":"de_DE","og_type":"article","og_title":"Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik","og_description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.","og_url":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/","og_site_name":"Statorials","article_published_time":"2023-07-11T03:04:56+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/rs1.png"}],"author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"3 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/","url":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/","name":"Verwendung von PROC SURVEYSELECT in SAS (mit Beispielen) \u2013 Statistik","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-11T03:04:56+00:00","dateModified":"2023-07-11T03:04:56+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand mehrerer Beispiele erl\u00e4utert, wie Sie PROC SURVEYSELECT in SAS verwenden, um Zufallsstichproben auszuw\u00e4hlen.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/sas-proc-surveyselect\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/sas-proc-surveyselect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"Verwendung von proc surveyselect in sas (mit beispielen)"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/de\/#website","url":"https:\/\/statorials.org\/de\/","name":"Statorials","description":"Ihr Leitfaden f\u00fcr statistische Kompetenz !","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"Person","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0","name":"Dr. Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Dr. Benjamin Anderson"},"description":"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen","sameAs":["https:\/\/statorials.org\/de"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/4438"}],"collection":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/comments?post=4438"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/4438\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=4438"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=4438"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=4438"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}