{"id":4589,"date":"2023-07-09T21:00:52","date_gmt":"2023-07-09T21:00:52","guid":{"rendered":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/"},"modified":"2023-07-09T21:00:52","modified_gmt":"2023-07-09T21:00:52","slug":"luchtsluis-plafondfunctie","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/","title":{"rendered":"Hoe de ceil-functie in sas te gebruiken"},"content":{"rendered":"<p><\/p>\n<hr>\n<p><span style=\"color: #000000;\">U kunt de <b>CEIL-<\/b> functie in SAS gebruiken om het kleinste gehele getal groter dan of gelijk aan een numerieke waarde te retourneren.<\/span><\/p>\n<p> <span style=\"color: #000000;\">Het volgende voorbeeld laat zien hoe u de <b>CEIL-<\/b> functie in de praktijk kunt gebruiken.<\/span><\/p>\n<p> <span style=\"color: #000000;\"><strong>Opmerking<\/strong> : het tegenovergestelde van de <strong>CEIL-<\/strong> functie in SAS is de <a href=\"https:\/\/statorials.org\/nl\/luchtsluisvloerfunctie\/\" target=\"_blank\" rel=\"noopener\">FLOOR-<\/a> functie.<\/span><\/p>\n<h2> <span style=\"color: #000000;\"><strong>Voorbeeld: hoe u de CEIL-functie in SAS gebruikt<\/strong><\/span><\/h2>\n<p> <span style=\"color: #000000;\">Laten we zeggen dat we de volgende gegevensset in SAS hebben die informatie bevat over de gemiddelde items die door verschillende werknemers van een bedrijf worden verkocht:<\/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> employee $avg_sales;\n    <span style=\"color: #3366ff;\">datalines<\/span> ;\nAndy 12.3\nBob 14.5\nChad 8.44\nDerrick 12.87\nEric 8.01\nFrank 10\nGeorge 11.5\nHenry 11.99\nIsaac 7.64\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-35799 aligncenter\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/etagesas1.png\" alt=\"\" width=\"234\" height=\"281\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">We kunnen de <b>CEIL-<\/b> functie gebruiken om het kleinste gehele getal kleiner dan of gelijk aan elke numerieke waarde in de kolom <strong>avg_sales<\/strong> te retourneren:<\/span> <\/p>\n<pre style=\"background-color: #ececec; font-size: 15px;\"> <span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">\/*create new dataset*\/\n<\/span><span style=\"color: #800080;\">data<\/span> new_data;\n    <span style=\"color: #3366ff;\">set<\/span> my_data;\n    ceil_avg_sales = <span style=\"color: #3366ff;\">ceil<\/span> (avg_sales);\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> =new_data;\n<\/strong><\/span><\/pre>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-35808\" src=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/plafonds1.png\" alt=\"Voorbeeld van de SAS CEIL-functie\" width=\"350\" height=\"278\" srcset=\"\" sizes=\"auto, \"><\/p>\n<p> <span style=\"color: #000000;\">Houd er rekening mee dat de nieuwe kolom <strong>ceil_avg_sales<\/strong> het kleinste gehele getal bevat dat kleiner is dan of gelijk is aan elke numerieke waarde in de kolom <strong>avg_sales<\/strong> .<\/span><\/p>\n<p> <span style=\"color: #000000;\">Bijvoorbeeld:<\/span><\/p>\n<ul>\n<li> <span style=\"color: #000000;\">De waarde <strong>12,30<\/strong> wordt <strong>13<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\">De waarde <strong>14,50<\/strong> wordt <strong>15<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\">De waarde <strong>8,44<\/strong> wordt <strong>9<\/strong> .<\/span><\/li>\n<li> <span style=\"color: #000000;\">De waarde <strong>12,87<\/strong> wordt <strong>13<\/strong> .<\/span><\/li>\n<\/ul>\n<p> <span style=\"color: #000000;\">Enzovoort.<\/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> <span style=\"color: #000000;\"><a href=\"https:\/\/statorials.org\/nl\/ronde-luchtsluis\/\" target=\"_blank\" rel=\"noopener\">Hoe getallen in SAS af te ronden<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/zonder-kommas-uit-de-tekenreeks-te-verwijderen\/\" target=\"_blank\" rel=\"noopener\">Hoe komma&#8217;s uit tekenreeksen in SAS te verwijderen<\/a><br \/> <a href=\"https:\/\/statorials.org\/nl\/sas-percentageformaat\/\" target=\"_blank\" rel=\"noopener\">Hoe waarden in procentenformaat in SAS worden weergegeven<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>U kunt de CEIL- functie in SAS gebruiken om het kleinste gehele getal groter dan of gelijk aan een numerieke waarde te retourneren. Het volgende voorbeeld laat zien hoe u de CEIL- functie in de praktijk kunt gebruiken. Opmerking : het tegenovergestelde van de CEIL- functie in SAS is de FLOOR- functie. Voorbeeld: hoe u [&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-4589","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 de CEIL-functie te gebruiken in SAS - Statorials<\/title>\n<meta name=\"description\" content=\"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u de CEIL-functie in SAS gebruikt.\" \/>\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\/luchtsluis-plafondfunctie\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hoe de CEIL-functie te gebruiken in SAS - Statorials\" \/>\n<meta property=\"og:description\" content=\"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u de CEIL-functie in SAS gebruikt.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-09T21:00:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/etagesas1.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=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/\",\"url\":\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/\",\"name\":\"Hoe de CEIL-functie te gebruiken in SAS - Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-09T21:00:52+00:00\",\"dateModified\":\"2023-07-09T21:00:52+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 de CEIL-functie in SAS gebruikt.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hoe de ceil-functie in sas te gebruiken\"}]},{\"@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 de CEIL-functie te gebruiken in SAS - Statorials","description":"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u de CEIL-functie in SAS gebruikt.","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\/luchtsluis-plafondfunctie\/","og_locale":"de_DE","og_type":"article","og_title":"Hoe de CEIL-functie te gebruiken in SAS - Statorials","og_description":"In deze zelfstudie wordt aan de hand van een voorbeeld uitgelegd hoe u de CEIL-functie in SAS gebruikt.","og_url":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/","og_site_name":"Statorials","article_published_time":"2023-07-09T21:00:52+00:00","og_image":[{"url":"https:\/\/statorials.org\/wp-content\/uploads\/2023\/08\/etagesas1.png"}],"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\/luchtsluis-plafondfunctie\/","url":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/","name":"Hoe de CEIL-functie te gebruiken in SAS - Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-09T21:00:52+00:00","dateModified":"2023-07-09T21:00:52+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 de CEIL-functie in SAS gebruikt.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/luchtsluis-plafondfunctie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hoe de ceil-functie in sas te gebruiken"}]},{"@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\/4589","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=4589"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/4589\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=4589"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=4589"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=4589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}