{"id":757,"date":"2023-07-28T20:56:46","date_gmt":"2023-07-28T20:56:46","guid":{"rendered":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/"},"modified":"2023-07-28T20:56:46","modified_gmt":"2023-07-28T20:56:46","slug":"hypergeometrische-distributiecalculator","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/","title":{"rendered":"Hypergeometrische distributiecalculator"},"content":{"rendered":"<p><script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/mathjs\/5.1.1\/math.js\"><\/script><script src=\"https:\/\/cdn.jsdelivr.net\/npm\/jstat@latest\/dist\/jstat.min.js\"><\/script><\/p>\n<style>\n@import url('https:\/\/fonts.googleapis.com\/css?family=Droid+Serif|Raleway');<\/p>\n<p>.axis--y .domain {\n  display: none;\n}<\/p>\n<p>h1 {\ntext-align: center;\nfont-size: 50px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', serif;\n}<\/p>\n<p>p {\ncolor: black;\nmargin-bottom: 15px;\nmargin-top: 15px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>#words {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\npadding-left: 100px;\n}<\/p>\n<p>#words_calc {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\npadding-left: 100px;\n}<\/p>\n<p>#hr_top {\nwidth: 30%;\nmargin-bottom: 0px;\nborder: none;\nheight: 2px;\ncolor: black;\nbackground-color: black;\n}<\/p>\n<p>#hr_bottom {\nwidth: 30%;\nmargin-top: 15px;\nborder: none;\nheight: 2px;\ncolor: black;\nbackground-color: black;\n}<\/p>\n<p>#words label, input {\n    display: inline-block;\n    vertical-align: baseline;\n    width: 350px;\n}<\/p>\n<p>    #buttonCalc {\n      border: 1px solid;\n      border-radius: 10px;\n      margin-top: 20px;\n      padding: 10px 10px;\n      cursor: pointer;\n      outline: none;\n      background-color: white;\n      color: black;\n      font-family: 'Work Sans', sans-serif;\n      border: 1px solid grey;\n      \/* Green *\/\n    }<\/p>\n<p>    #buttonCalc:hover {\n      background-color: #f6f6f6;\n      border: 1px solid black;\n    }<\/p>\n<p>#words_intro {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}\n<\/style>\n<div id=\"words_intro\">Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.<\/div>\n<div id=\"words\"> <label>Populatieomvang<\/label><input type=\"number\" id=\"pop\" value=\"25\"><\/div>\n<div id=\"words\"> <label># Bevolkingssucces<\/label><input type=\"number\" id=\"popx\" value=\"13\"><\/div>\n<div id=\"words\"> <label>Steekproefgrootte<\/label><input type=\"number\" id=\"sample\" value=\"12\"><\/div>\n<div id=\"words\"> <label># Succes in steekproef (x)<\/label> <input type=\"number\" id=\"samplex\" value=\"4\"><\/div>\n<div id=\"words_calc\"><input type=\"button\" id=\"buttonCalc\" onclick=\"calc()\" value=\"Calculate\"><\/div>\n<div id=\"words\">\n<p> P(X = <span id=\"x1\">4<\/span> ): <span id=\"exactP\">0,06806<\/span><\/p>\n<\/div>\n<div id=\"words\">\n<p> P(X &lt; <span id=\"x2\">4<\/span> ): <span id=\"lessP\">0,01312<\/span><\/p>\n<\/div>\n<div id=\"words\">\n<p> P(X \u2264 <span id=\"x3\">4<\/span> ): <span id=\"lessEP\">0,08118<\/span><\/p>\n<\/div>\n<div id=\"words\">\n<p> P(X &gt; <span id=\"x4\">4<\/span> ): <span id=\"greatP\">0,91882<\/span><\/p>\n<\/div>\n<div id=\"words\">\n<p> P( <span id=\"x5\">X\u22654<\/span> ): <span id=\"greatEP\">0,98688<\/span><\/p>\n<\/div>\n<p><script><\/p>\n<p>function calc() {<\/p>\n<p>\/\/get input values\nvar pop = +document.getElementById('pop').value;\nvar popx = +document.getElementById('popx').value;\nvar sample = +document.getElementById('sample').value;\nvar x = +document.getElementById('samplex').value;<\/p>\n<p>\/\/calculate SE\nvar exactP = jStat.hypgeom.pdf(x, pop, popx, sample);\nvar lessP = jStat.hypgeom.cdf(x-1, pop, popx, sample);\nvar lessEP = jStat.hypgeom.cdf(x, pop, popx, sample);\nvar greatP = 1-jStat.hypgeom.cdf(x, pop, popx, sample);\nvar greatEP = 1-jStat.hypgeom.cdf(x-1, pop, popx, sample);<\/p>\n<p>\/\/output probabilities\ndocument.getElementById('exactP').innerHTML = exactP.toFixed(5);\ndocument.getElementById('lessP').innerHTML = lessP.toFixed(5);\ndocument.getElementById('lessEP').innerHTML = lessEP.toFixed(5);\ndocument.getElementById('greatP').innerHTML = greatP.toFixed(5);\ndocument.getElementById('greatEP').innerHTML = greatEP.toFixed(5);<\/p>\n<p>document.getElementById('x1').innerHTML = x;\ndocument.getElementById('x2').innerHTML = x;\ndocument.getElementById('x3').innerHTML = x;\ndocument.getElementById('x4').innerHTML = x;\ndocument.getElementById('x5').innerHTML = x;\n}<\/p>\n<p><\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer. Populatieomvang # Bevolkingssucces Steekproefgrootte # Succes in steekproef (x) P(X = 4 ): 0,06806 P(X &lt; 4 ): 0,01312 P(X \u2264 4 ): 0,08118 P(X &gt; 4 ): 0,91882 P( X\u22654 ): 0,98688<\/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-757","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>Hypergeometrische distributiecalculator - Statorialen<\/title>\n<meta name=\"description\" content=\"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.\" \/>\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\/hypergeometrische-distributiecalculator\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hypergeometrische distributiecalculator - Statorialen\" \/>\n<meta property=\"og:description\" content=\"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-28T20:56:46+00:00\" \/>\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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/\",\"url\":\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/\",\"name\":\"Hypergeometrische distributiecalculator - Statorialen\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-28T20:56:46+00:00\",\"dateModified\":\"2023-07-28T20:56:46+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hypergeometrische distributiecalculator\"}]},{\"@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":"Hypergeometrische distributiecalculator - Statorialen","description":"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.","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\/hypergeometrische-distributiecalculator\/","og_locale":"de_DE","og_type":"article","og_title":"Hypergeometrische distributiecalculator - Statorialen","og_description":"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.","og_url":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/","og_site_name":"Statorials","article_published_time":"2023-07-28T20:56:46+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/","url":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/","name":"Hypergeometrische distributiecalculator - Statorialen","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-28T20:56:46+00:00","dateModified":"2023-07-28T20:56:46+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"Deze rekenmachine vindt de kansen die verband houden met de hypergeometrische verdeling op basis van door de gebruiker verstrekte invoer.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/hypergeometrische-distributiecalculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Hypergeometrische distributiecalculator"}]},{"@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\/757","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=757"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/757\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=757"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=757"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=757"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}