{"id":4620,"date":"2023-07-09T14:06:39","date_gmt":"2023-07-09T14:06:39","guid":{"rendered":"https:\/\/statorials.org\/de\/sas-proc-stdize\/"},"modified":"2023-07-09T14:06:39","modified_gmt":"2023-07-09T14:06:39","slug":"sas-proc-stdize","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/sas-proc-stdize\/","title":{"rendered":"So verwenden sie proc stdize in sas (mit beispiel)"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>Das Standardisieren<\/strong> einer Variablen bedeutet, jeden Wert der Variablen so zu skalieren, dass der Mittelwert 0 und die Standardabweichung 1 betr\u00e4gt.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Mit der folgenden Formel k\u00f6nnen Sie eine Variable standardisieren<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>(x <sub>i<\/sub> \u2013 <span style=\"text-decoration: overline;\">x<\/span> ) \/ s<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Gold:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>x <sub>i<\/sub><\/strong> : der <sup>i-te<\/sup> Wert des Datensatzes<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong><span style=\"text-decoration: overline;\">x<\/span><\/strong> : Das Stichprobenmittel<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>s<\/strong> : die Standardabweichung der Stichprobe<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Der einfachste Weg, eine Variable in SAS zu standardisieren, ist die Verwendung der <strong>PROC STDIZE-<\/strong> Anweisung.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Das folgende Beispiel zeigt, wie diese Anweisung in der Praxis verwendet wird.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Beispiel: Verwendung von PROC STDIZE in SAS<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Angenommen, wir haben in SAS den folgenden Datensatz, der Informationen \u00fcber verschiedene Basketballspieler enth\u00e4lt:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*create first dataset*\/ \n<\/span><span style=\"color: #800080;\">data<\/span> my_data;\n    <span style=\"color: #3366ff;\">input<\/span> player $ points assists rebounds;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nA 18 3 15\nB 20 3 14\nC 19 4 14\nD 14 5 10\nE 14 4 8\nF 15 7 14\nG 20 8 13\nH 28 7 9\nI 30 6 5\nJ 0 31 9 4\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;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-36046 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize1.png\" alt=\"\" width=\"327\" height=\"306\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Mit der <strong>PROC STDIZE-<\/strong> Anweisung k\u00f6nnen wir einen neuen Datensatz erstellen, der jede der numerischen Variablen im Datensatz standardisiert:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*standardize all numeric variables in dataset*\/\n<\/span><span style=\"color: #800080;\">proc stdize<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data <span style=\"color: #3366ff;\">out<\/span> =std_data;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =std_data;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-36047 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize2.png\" alt=\"\" width=\"340\" height=\"304\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Jede der numerischen Variablen (Punkte, Assists, Rebounds) wurde auf einen Mittelwert von 0 und eine Standardabweichung von 1 standardisiert.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Beachten Sie, dass wir die <strong>VAR-<\/strong> Anweisung auch verwenden k\u00f6nnen, um anzugeben, welche Variablen normalisiert werden sollen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Beispielsweise k\u00f6nnen wir die folgende <strong>PROC STDIZE-<\/strong> Anweisung mit der <strong>VAR-<\/strong> Anweisung verwenden, um nur die Punktevariable zu normalisieren:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*standardize points variable in dataset*\/\n<\/span><span style=\"color: #800080;\">proc stdize<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data <span style=\"color: #3366ff;\">out<\/span> =std_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n<span style=\"color: #800080;\">run<\/span> ;\n\n<span style=\"color: #008000;\">\/*view new dataset*\/\n<\/span><span style=\"color: #800080;\">proc print<\/span> <span style=\"color: #3366ff;\">data<\/span> =std_data;<\/strong><\/span> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-36048 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize3.png\" alt=\"\" width=\"339\" height=\"305\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Die Werte in der Punktespalte wurden vereinheitlicht, w\u00e4hrend alle anderen Spalten erhalten blieben.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen die <strong>PROC MEANS<\/strong> -Anweisung verwenden, um zu \u00fcberpr\u00fcfen, ob die Punktevariable jetzt einen Mittelwert von 0 und eine Standardabweichung von 1 hat:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #008000;\"><strong>\/*view mean and standard deviation of each variable*\/<\/strong><\/span>\n<strong><span style=\"color: #800080;\">proc means<\/span> <span style=\"color: #3366ff;\">data<\/span> =std_data;<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-36049 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize4.png\" alt=\"\" width=\"465\" height=\"130\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Wir sehen, dass die Punktevariable einen Mittelwert von 0 und eine Standardabweichung von 1 hat.<\/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> <a href=\"https:\/\/statorials.org\/de\/sas-entfernt-zeilen-mit-fehlenden-werten\/\" target=\"_blank\" rel=\"noopener\">So l\u00f6schen Sie Zeilen mit fehlenden Werten in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/ohne-standardabweichung\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie die Standardabweichung in SAS (3 Beispiele)<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/z-score-sas\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie Z-Scores in SAS<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Das Standardisieren einer Variablen bedeutet, jeden Wert der Variablen so zu skalieren, dass der Mittelwert 0 und die Standardabweichung 1 betr\u00e4gt. Mit der folgenden Formel k\u00f6nnen Sie eine Variable standardisieren (x i \u2013 x ) \/ s Gold: x i : der i-te Wert des Datensatzes x : Das Stichprobenmittel s : die Standardabweichung der [&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 STDIZE in SAS (mit Beispiel) \u2013 Statistik<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.\" \/>\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-stdize\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Verwendung von PROC STDIZE in SAS (mit Beispiel) \u2013 Statistik\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/sas-proc-stdize\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-09T14:06:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize1.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=\"2 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-stdize\/\",\"url\":\"https:\/\/statorials.org\/de\/sas-proc-stdize\/\",\"name\":\"Verwendung von PROC STDIZE in SAS (mit Beispiel) \u2013 Statistik\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-09T14:06:39+00:00\",\"dateModified\":\"2023-07-09T14:06:39+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/sas-proc-stdize\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/sas-proc-stdize\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/sas-proc-stdize\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So verwenden sie proc stdize in sas (mit beispiel)\"}]},{\"@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 STDIZE in SAS (mit Beispiel) \u2013 Statistik","description":"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.","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-stdize\/","og_locale":"de_DE","og_type":"article","og_title":"Verwendung von PROC STDIZE in SAS (mit Beispiel) \u2013 Statistik","og_description":"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.","og_url":"https:\/\/statorials.org\/de\/sas-proc-stdize\/","og_site_name":"Statorials","article_published_time":"2023-07-09T14:06:39+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/stdize1.png"}],"author":"Dr. Benjamin Anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr. Benjamin Anderson","Gesch\u00e4tzte Lesezeit":"2 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/de\/sas-proc-stdize\/","url":"https:\/\/statorials.org\/de\/sas-proc-stdize\/","name":"Verwendung von PROC STDIZE in SAS (mit Beispiel) \u2013 Statistik","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-09T14:06:39+00:00","dateModified":"2023-07-09T14:06:39+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird erl\u00e4utert, wie Sie PROC STDIZE in SAS verwenden, um eine oder mehrere numerische Variablen in einem Datensatz in SAS zu standardisieren, einschlie\u00dflich Beispielen.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/sas-proc-stdize\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/sas-proc-stdize\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/sas-proc-stdize\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So verwenden sie proc stdize in sas (mit beispiel)"}]},{"@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\/4620"}],"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=4620"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/4620\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=4620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=4620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=4620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}