{"id":4526,"date":"2023-07-10T09:38:42","date_gmt":"2023-07-10T09:38:42","guid":{"rendered":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/"},"modified":"2023-07-10T09:38:42","modified_gmt":"2023-07-10T09:38:42","slug":"lebhaft-in-der-luftschleuse","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/","title":{"rendered":"So berechnen sie den variance inflation factor (vif) in sas"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">Bei der Regressionsanalyse tritt <a href=\"https:\/\/statorials.org\/de\/multikollinearitatsregression\/\" target=\"_blank\" rel=\"noopener\">Multikollinearit\u00e4t<\/a> auf, wenn zwei oder mehr Pr\u00e4diktorvariablen stark miteinander korrelieren, sodass sie im Regressionsmodell keine eindeutigen oder unabh\u00e4ngigen Informationen liefern.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wenn der Korrelationsgrad zwischen den Variablen hoch genug ist, kann dies zu Problemen bei der Anpassung und Interpretation des Regressionsmodells f\u00fchren.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Eine M\u00f6glichkeit, Multikollinearit\u00e4t zu erkennen, ist die Verwendung einer Metrik namens <strong>Variance Inflation Factor (VIF)<\/strong> , die die Korrelation und St\u00e4rke der Korrelation zwischen erkl\u00e4renden Variablen in einem <a href=\"https:\/\/statorials.org\/de\/lineare-regressionspython\/\" target=\"_blank\" rel=\"noopener\">Regressionsmodell<\/a> misst.<\/span><\/p>\n<p> <span style=\"color: #000000;\">In diesem Tutorial wird erkl\u00e4rt, wie man VIF in SAS berechnet.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Beispiel: Berechnung des VIF in SAS<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">F\u00fcr dieses Beispiel erstellen wir einen Datensatz, der die Attribute von 10 Basketballspielern beschreibt:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*create dataset*\/\n<\/span><span style=\"color: #800080;\">data<\/span> my_data;\n    <span style=\"color: #3366ff;\">input<\/span> rating points assists rebounds;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\n90 25 5 11\n85 20 7 8\n82 14 7 10\n88 16 8 6\n94 27 5 6\n90 20 7 9\n76 12 6 6\n75 15 9 10\n87 14 9 10\n86 19 5 7\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> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-35364 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vifs1.png\" alt=\"\" width=\"320\" height=\"290\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Nehmen wir an, wir m\u00f6chten ein multiples lineares Regressionsmodell anpassen, indem wir <strong>\u201escoring\u201c<\/strong> als Antwortvariable und <strong>\u201epoints\u201c<\/strong> , <strong>\u201eassists<\/strong> \u201c und \u201e <strong>rebounds\u201c<\/strong> als Pr\u00e4diktorvariablen verwenden.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Wir k\u00f6nnen <a href=\"https:\/\/statorials.org\/de\/sas-proc-reg\/\" target=\"_blank\" rel=\"noopener\">PROC REG<\/a> verwenden, um dieses Regressionsmodell mit der <strong>VIF-<\/strong> Option anzupassen, um VIF-Werte f\u00fcr jede Pr\u00e4diktorvariable im Modell zu berechnen:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*fit regression model and calculate VIF values*\/\n<\/span><span style=\"color: #800080;\">proc reg<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n    <span style=\"color: #3366ff;\">model<\/span> rating = points assists rebounds \/ <span style=\"color: #3366ff;\">lively<\/span> ;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-35365\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vifs2.png\" alt=\"VIF in SAS\" width=\"429\" height=\"547\" srcset=\"\" sizes=\"\"><\/p>\n<p> <span style=\"color: #000000;\">Aus der Tabelle <strong>\u201eParametersch\u00e4tzungen\u201c<\/strong> k\u00f6nnen wir die VIF-Werte f\u00fcr jede der Pr\u00e4diktorvariablen sehen:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>Punkte:<\/strong> 1,76398<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Vorlagen:<\/strong> 1,96591<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Rebounds:<\/strong> 1,17503<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\"><strong>Hinweis:<\/strong> Ignorieren Sie das VIF f\u00fcr \u201eIntercept\u201c in der Vorlage, da dieser Wert nicht relevant ist.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Der VIF-Wert beginnt bei 1 und hat keine Obergrenze. Eine allgemeine Regel f\u00fcr die Interpretation von VIFs lautet:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">Ein Wert von <strong>1<\/strong> gibt an, dass keine Korrelation zwischen einer bestimmten Pr\u00e4diktorvariablen und einer anderen Pr\u00e4diktorvariablen im Modell besteht.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Ein Wert zwischen <strong>1<\/strong> und <strong>5<\/strong> weist auf eine m\u00e4\u00dfige Korrelation zwischen einer bestimmten Pr\u00e4diktorvariablen und anderen Pr\u00e4diktorvariablen im Modell hin, ist jedoch oft nicht schwerwiegend genug, um besondere Aufmerksamkeit zu erfordern.<\/span><\/li>\n<li> <span style=\"color: #000000;\">Ein Wert gr\u00f6\u00dfer als <strong>5<\/strong> weist auf eine potenziell schwerwiegende Korrelation zwischen einer bestimmten Pr\u00e4diktorvariablen und anderen Pr\u00e4diktorvariablen im Modell hin. In diesem Fall sind die Koeffizientensch\u00e4tzungen und p-Werte in den Regressionsergebnissen wahrscheinlich unzuverl\u00e4ssig.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Da jeder der VIF-Werte der Pr\u00e4diktorvariablen in unserem Regressionsmodell nahe bei 1 liegt, ist Multikollinearit\u00e4t in unserem Beispiel kein Problem.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Wie man mit Multikollinearit\u00e4t umgeht<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Wenn Sie feststellen, dass Multikollinearit\u00e4t ein Problem in Ihrem Regressionsmodell darstellt, gibt es mehrere g\u00e4ngige M\u00f6glichkeiten, es zu l\u00f6sen:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1. Entfernen Sie eine oder mehrere der stark korrelierten Variablen.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Dies ist in den meisten F\u00e4llen die schnellste L\u00f6sung und oft eine akzeptable L\u00f6sung, da die von Ihnen entfernten Variablen ohnehin redundant sind und dem Modell nur wenige eindeutige oder unabh\u00e4ngige Informationen hinzuf\u00fcgen.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2. Kombiniert die Pr\u00e4diktorvariablen auf irgendeine Weise linear, z. B. indem sie auf irgendeine Weise addiert oder subtrahiert werden.<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Auf diese Weise k\u00f6nnen Sie eine neue Variable erstellen, die die Informationen beider Variablen umfasst, und Sie haben kein Multikollinearit\u00e4tsproblem mehr.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>3. F\u00fchren Sie eine Analyse durch, die stark korrelierte Variablen ber\u00fccksichtigt, z. B. eine Hauptkomponentenanalyse oder eine PLS-Regression (Partial Least Squares).<\/strong><\/span><\/p>\n<p> <span style=\"color: #000000;\">Diese Techniken sind speziell f\u00fcr den Umgang mit stark korrelierten Pr\u00e4diktorvariablen konzipiert.<\/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\/multiple-lineare-regression-in-sas\/\" target=\"_blank\" rel=\"noopener\">So f\u00fchren Sie eine multiple lineare Regression in SAS durch<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/restgrafik-luftschleuse\/\" target=\"_blank\" rel=\"noopener\">So erstellen Sie ein Restdiagramm in SAS<\/a><br \/> <a href=\"https:\/\/statorials.org\/de\/fernkoche-in-der-luftschleuse\/\" target=\"_blank\" rel=\"noopener\">So berechnen Sie die Kochdistanz in SAS<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bei der Regressionsanalyse tritt Multikollinearit\u00e4t auf, wenn zwei oder mehr Pr\u00e4diktorvariablen stark miteinander korrelieren, sodass sie im Regressionsmodell keine eindeutigen oder unabh\u00e4ngigen Informationen liefern. Wenn der Korrelationsgrad zwischen den Variablen hoch genug ist, kann dies zu Problemen bei der Anpassung und Interpretation des Regressionsmodells f\u00fchren. Eine M\u00f6glichkeit, Multikollinearit\u00e4t zu erkennen, ist die Verwendung einer Metrik [&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>So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials<\/title>\n<meta name=\"description\" content=\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.\" \/>\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\/lebhaft-in-der-luftschleuse\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials\" \/>\n<meta property=\"og:description\" content=\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T09:38:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vifs1.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\/lebhaft-in-der-luftschleuse\/\",\"url\":\"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/\",\"name\":\"So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-10T09:38:42+00:00\",\"dateModified\":\"2023-07-10T09:38:42+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"So berechnen sie den variance inflation factor (vif) in sas\"}]},{\"@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":"So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials","description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.","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\/lebhaft-in-der-luftschleuse\/","og_locale":"de_DE","og_type":"article","og_title":"So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials","og_description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.","og_url":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/","og_site_name":"Statorials","article_published_time":"2023-07-10T09:38:42+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/vifs1.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\/lebhaft-in-der-luftschleuse\/","url":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/","name":"So berechnen Sie den Variance Inflation Factor (VIF) in SAS - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-10T09:38:42+00:00","dateModified":"2023-07-10T09:38:42+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"In diesem Tutorial wird anhand eines Beispiels erl\u00e4utert, wie der VIF (Varianz-Inflationsfaktor) in SAS berechnet wird.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/lebhaft-in-der-luftschleuse\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"So berechnen sie den variance inflation factor (vif) in sas"}]},{"@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\/4526"}],"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=4526"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/4526\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=4526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=4526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=4526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}