{"id":2527,"date":"2023-07-21T21:35:51","date_gmt":"2023-07-21T21:35:51","guid":{"rendered":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/"},"modified":"2023-07-21T21:35:51","modified_gmt":"2023-07-21T21:35:51","slug":"kolmogorov-smirnov-test-in-luchtsluis","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/","title":{"rendered":"Hoe u een kolmogorov-smirnov-test uitvoert in sas"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">De <strong>Kolmogorov-Smirnov-test<\/strong> wordt gebruikt om te bepalen of een steekproef <a href=\"https:\/\/statorials.org\/nl\/de-normale-verdeling\/\" target=\"_blank\" rel=\"noopener\">normaal verdeeld<\/a> is of niet.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Deze test wordt veel gebruikt omdat veel statistische tests en procedures <a href=\"https:\/\/statorials.org\/nl\/normaliteitshypothese\/\" target=\"_blank\" rel=\"noopener\">ervan uitgaan<\/a> dat de gegevens normaal verdeeld zijn.<\/span><\/p>\n<p> <span style=\"color: #000000;\">In het volgende stapsgewijze voorbeeld ziet u hoe u een Kolmogorov-Smirnov-test uitvoert op een voorbeeldgegevensset in SAS.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Voorbeeld: Kolmogorov-Smirnov-test in SAS<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">Laten we eerst een gegevensset in SAS maken met een steekproefomvang van n = 20:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\"><span style=\"color: #008080;\"><span style=\"color: #008000;\">\/*create dataset*\/\n<\/span><\/span><\/span><span style=\"color: #800080;\">data<\/span> my_data;\n    <span style=\"color: #3366ff;\">inputValues<\/span> ;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\n5.57\n8.32\n8.35\n8.74\n8.75\n9.38\n9.91\n9.96\n10.36\n10.65\n10.77\n10.97\n11.15\n11.18\n11.47\n11.64\n11.88\n12.24\n13.02\n13.19\n;\n<span style=\"color: #800080;\">run<\/span> ;\n<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Vervolgens zullen we <strong>proc univariate<\/strong> gebruiken om een Kolmogorov-Smirnov-test uit te voeren om te bepalen of de steekproef normaal verdeeld is:<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\"><span style=\"color: #008080;\"><span style=\"color: #008000;\">\/*perform Kolmogorov-Smirnov test*\/\n<\/span><\/span><\/span><span style=\"color: #000000;\"><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n   <span style=\"color: #3366ff;\">histogram<\/span> Values \/ <span style=\"color: #3366ff;\">normal<\/span> ( <span style=\"color: #3366ff;\">mu<\/span> =est <span style=\"color: #3366ff;\">sigma<\/span> =est);\n<span style=\"color: #800080;\">run<\/span> ;<\/span><\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Onderaan het resultaat zien we de teststatistiek en de bijbehorende p-waarde van de Kolmogorov-Smirnov-test:<\/span> <\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-22465\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kssas1.jpg\" alt=\"Kolmogorov-Smirnov-test in SAS\" width=\"335\" height=\"487\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De teststatistiek is <strong>0,1098<\/strong> en de overeenkomstige p-waarde is <strong>&gt;0,150<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bedenk dat een Kolmogorov-Smirnov-test de volgende nul- en alternatieve hypothesen gebruikt:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>H <sub>0<\/sub><\/strong> : Gegevens zijn normaal verdeeld.<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>H <sub>A<\/sub><\/strong> : De gegevens zijn niet normaal verdeeld.<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Omdat de p-waarde van de test niet kleiner is dan 0,05, slagen we er niet in de nulhypothese te verwerpen.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Dit betekent dat we ervan uit kunnen gaan dat de dataset normaal verdeeld is.<\/span><\/p>\n<h3> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h3>\n<p> <span style=\"color: #000000;\">In de volgende tutorials wordt uitgelegd hoe u een Kolmogorov-Smirnov-test uitvoert in andere statistische software:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-excel-test\/\" target=\"_blank\" rel=\"noopener\">Hoe u een Kolmogorov-Smirnov-test uitvoert in Excel<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-r\/\" target=\"_blank\" rel=\"noopener\">Hoe een Kolmogorov-Smirnov-test uit te voeren in R<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-testpython\/\" target=\"_blank\" rel=\"noopener\">Hoe u een Kolmogorov-Smirnov-test uitvoert in Python<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>De Kolmogorov-Smirnov-test wordt gebruikt om te bepalen of een steekproef normaal verdeeld is of niet. Deze test wordt veel gebruikt omdat veel statistische tests en procedures ervan uitgaan dat de gegevens normaal verdeeld zijn. In het volgende stapsgewijze voorbeeld ziet u hoe u een Kolmogorov-Smirnov-test uitvoert op een voorbeeldgegevensset in SAS. Voorbeeld: Kolmogorov-Smirnov-test in SAS [&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-2527","post","type-post","status-publish","format-standard","hentry","category-gids"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials<\/title>\n<meta name=\"description\" content=\"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.\" \/>\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\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-21T21:35:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kssas1.jpg\" \/>\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=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/\",\"url\":\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/\",\"name\":\"Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-21T21:35:51+00:00\",\"dateModified\":\"2023-07-21T21:35:51+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe u een kolmogorov-smirnov-test uitvoert in sas\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/nl\/#website\",\"url\":\"https:\/\/statorials.org\/nl\/\",\"name\":\"Statorials\",\"description\":\"Uw gids voor statistische competentie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/nl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder\",\"sameAs\":[\"http:\/\/statorials.org\/nl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials","description":"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.","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\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/","og_locale":"de_DE","og_type":"article","og_title":"Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials","og_description":"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.","og_url":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/","og_site_name":"Statorials","article_published_time":"2023-07-21T21:35:51+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/kssas1.jpg"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/","url":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/","name":"Hoe een Kolmogorov-Smirnov-test uit te voeren in SAS - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-21T21:35:51+00:00","dateModified":"2023-07-21T21:35:51+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze tutorial wordt uitgelegd hoe u een Kolmogorov-Smirnov-test in SAS uitvoert, met een compleet voorbeeld.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/kolmogorov-smirnov-test-in-luchtsluis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe u een kolmogorov-smirnov-test uitvoert in sas"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/nl\/#website","url":"https:\/\/statorials.org\/nl\/","name":"Statorials","description":"Uw gids voor statistische competentie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/nl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder","sameAs":["http:\/\/statorials.org\/nl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2527","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/comments?post=2527"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/2527\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=2527"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=2527"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=2527"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}