{"id":4221,"date":"2023-07-12T18:22:33","date_gmt":"2023-07-12T18:22:33","guid":{"rendered":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/"},"modified":"2023-07-12T18:22:33","modified_gmt":"2023-07-12T18:22:33","slug":"beschrijvende-statistiek-in-sas","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/","title":{"rendered":"Hoe beschrijvende statistieken in sas te berekenen"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\"><strong>Beschrijvende statistieken<\/strong> zijn waarden die een reeks gegevens beschrijven.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Ze helpen ons te begrijpen waar <a href=\"https:\/\/statorials.org\/nl\/meet-de-centrale-tendens\/\" target=\"_blank\" rel=\"noopener\">het centrum<\/a> van de dataset zich bevindt, evenals de verdeling van waarden in de dataset.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Er zijn twee veelgebruikte manieren om beschrijvende statistieken voor variabelen in SAS te berekenen:<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>1.<\/strong> Gebruik <strong>PROC MEANS<\/strong> om samenvattende statistieken te berekenen<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>2.<\/strong> Gebruik <strong>PROC UNIVARIATE<\/strong> om gedetailleerde beschrijvende statistieken te berekenen<\/span><\/p>\n<p> <span style=\"color: #000000;\">De volgende voorbeelden laten zien hoe u elke methode in de praktijk kunt gebruiken met de volgende gegevensset in SAS:<\/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> team $points assists;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nAt 10 2\nAt 17 5\nAt 17 6\nAt 18 3\nAt 15 0\nB 10 2\nB 14 5\nB 13 4\nB 29 0\nB 25 2\nC 12 1\nC 30 1\nC 34 3\nC 12 4\nC 11 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-33383 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc1.jpg\" alt=\"\" width=\"212\" height=\"405\" srcset=\"\" sizes=\"auto, \"><\/p>\n<h2> <strong><span style=\"color: #000000;\">Voorbeeld 1. Gebruik PROC MEANS om samenvattende statistieken te berekenen<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u <strong>PROC MEANS<\/strong> gebruikt om samenvattende statistieken te berekenen voor de <strong>puntenvariabele<\/strong> in de gegevensset:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*calculate summary statistics for points variable*\/\n<\/span><span style=\"color: #800080;\">proc means<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-33385\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc2.jpg\" alt=\"beschrijvende statistieken in SAS met behulp van PROC MEANS\" width=\"423\" height=\"130\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De <strong>PROC MEANS<\/strong> -procedure berekent de volgende beschrijvende statistieken:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\"><strong>N<\/strong> : Het totale aantal waarnemingen<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Gemiddelde<\/strong> : de gemiddelde waarde van punten<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Std<\/strong> Dev: de standaardafwijking van de punten<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Minimum<\/strong> : De minimale waarde van punten<\/span><\/li>\n<li> <span style=\"color: #000000;\"><strong>Maximaal<\/strong> : de maximale waarde van punten<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Merk ook op dat u de class-instructie kunt gebruiken om beschrijvende statistieken voor \u00e9\u00e9n variabele te berekenen, gegroepeerd op een andere variabele.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen bijvoorbeeld de volgende code gebruiken om samenvattende statistieken te berekenen voor de <strong>puntenvariabele<\/strong> , gegroepeerd op de <strong>teamvariabele<\/strong> :<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*calculate summary statistics for points, grouped by team*\/\n<\/span><span style=\"color: #800080;\">proc means<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n    <span style=\"color: #3366ff;\">classteam<\/span> ;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-33386 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc3.jpg\" alt=\"\" width=\"504\" height=\"177\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De uitvoer geeft samenvattende statistieken weer voor de <strong>puntenvariabele<\/strong> , gegroepeerd op elk van de unieke <strong>teamwaarden<\/strong><\/span> <span style=\"color: #000000;\">.<\/span><\/p>\n<h2> <strong><span style=\"color: #000000;\">Voorbeeld 2. Gebruik PROC UNIVARIATE om gedetailleerde beschrijvende statistieken te berekenen<\/span><\/strong><\/h2>\n<p> <span style=\"color: #000000;\">De volgende code laat zien hoe u <strong>PROC UNIVARIATE<\/strong> gebruikt om gedetailleerde beschrijvende statistieken voor de <strong>puntenvariabele<\/strong> te berekenen:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*calculate detailed descriptive statistics for points variable*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong> <\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-33387 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc4.jpg\" alt=\"\" width=\"419\" height=\"531\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\" wp-image-33388 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc5.jpg\" alt=\"\" width=\"215\" height=\"509\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">De <strong>PROC UNIVARIATE-<\/strong> procedure berekent gedetailleerde beschrijvende statistieken voor de <strong>puntvariabele<\/strong> , inclusief gemiddelde, mediaan, modus, standaarddeviatie, variantie, bereik, interkwartielbereik, enz.<\/span><\/p>\n<p> <span style=\"color: #000000;\">We kunnen de <strong>class-<\/strong> instructie ook gebruiken om deze gedetailleerde beschrijvende statistieken voor de <strong>puntenvariabele<\/strong> te berekenen, gegroepeerd op de <strong>teamvariabele<\/strong> :<\/span><\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <strong><span style=\"color: #008000;\">\/*calculate detailed descriptive statistics for points, grouped by team*\/\n<\/span><span style=\"color: #800080;\">proc univariate<\/span> <span style=\"color: #3366ff;\">data<\/span> =my_data;\n    <span style=\"color: #3366ff;\">classteam<\/span> ;\n    <span style=\"color: #3366ff;\">var<\/span> points;\n<span style=\"color: #800080;\">run<\/span> ;<\/strong><\/pre>\n<p> <span style=\"color: #000000;\">Dit levert drie groepen uitvoertabellen op die gedetailleerde beschrijvende statistieken weergeven voor de <strong>puntenvariabele<\/strong> , gegroepeerd op elk van de unieke waarden <strong>van het team<\/strong> .<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Aanvullende bronnen<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">In de volgende zelfstudies wordt uitgelegd hoe u andere veelvoorkomende taken in SAS kunt uitvoeren:<\/span><\/p>\n<p> <a href=\"https:\/\/statorials.org\/nl\/sas-frequentietabel\/\" target=\"_blank\" rel=\"noopener\">Hoe frequentietabellen in SAS te maken<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/sas-percentielen\/\" target=\"_blank\" rel=\"noopener\">Hoe percentielen in SAS te berekenen<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/draaitabel-sas\/\" target=\"_blank\" rel=\"noopener\">Draaitabellen maken in SAS<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Beschrijvende statistieken zijn waarden die een reeks gegevens beschrijven. Ze helpen ons te begrijpen waar het centrum van de dataset zich bevindt, evenals de verdeling van waarden in de dataset. Er zijn twee veelgebruikte manieren om beschrijvende statistieken voor variabelen in SAS te berekenen: 1. Gebruik PROC MEANS om samenvattende statistieken te berekenen 2. Gebruik [&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-4221","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 beschrijvende statistieken te berekenen in SAS - Statorials<\/title>\n<meta name=\"description\" content=\"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.\" \/>\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\/beschrijvende-statistiek-in-sas\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe beschrijvende statistieken te berekenen in SAS - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-12T18:22:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc1.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=\"2\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/\",\"url\":\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/\",\"name\":\"Hoe beschrijvende statistieken te berekenen in SAS - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-12T18:22:33+00:00\",\"dateModified\":\"2023-07-12T18:22:33+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe beschrijvende statistieken in sas te berekenen\"}]},{\"@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 beschrijvende statistieken te berekenen in SAS - Statorials","description":"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.","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\/beschrijvende-statistiek-in-sas\/","og_locale":"de_DE","og_type":"article","og_title":"Hoe beschrijvende statistieken te berekenen in SAS - Statorials","og_description":"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.","og_url":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/","og_site_name":"Statorials","article_published_time":"2023-07-12T18:22:33+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/desc1.jpg"}],"author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson","Gesch\u00e4tzte Lesezeit":"2\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/","url":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/","name":"Hoe beschrijvende statistieken te berekenen in SAS - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-12T18:22:33+00:00","dateModified":"2023-07-12T18:22:33+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u beschrijvende statistieken in SAS kunt berekenen.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/beschrijvende-statistiek-in-sas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe beschrijvende statistieken in sas te berekenen"}]},{"@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\/4221","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=4221"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/4221\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=4221"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=4221"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=4221"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}