{"id":450,"date":"2023-07-29T21:10:12","date_gmt":"2023-07-29T21:10:12","guid":{"rendered":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/"},"modified":"2023-07-29T21:10:12","modified_gmt":"2023-07-29T21:10:12","slug":"aturan-praktis-masalah-empiris","status":"publish","type":"post","link":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/","title":{"rendered":"Masalah dalam mempraktikkan aturan praktis"},"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>h1 {\ncolor: black;\ntext-align: center;\nmargin-top: 15px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>h2 {\ncolor: black;\nfont-size: 20px;\ntext-align: center;\nmargin-bottom: 15px;\nmargin-top: 15px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>p {\ncolor: black;\ntext-align: center;\nmargin-bottom: 15px;\nmargin-top: 15px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>#words_intro {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#solution_div {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#words_output {\ntext-align: center;\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#words_outro {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\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>#calcTitle {\ntext-align: center;\nfont-size: 20px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', serif;\n}<\/p>\n<p>#hr_top {\nwidth: 70%;\nmargin-bottom: 15px;\nmargin-top: 15px;\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>.input_label_calc {\n    display: inline-block;\n    vertical-align: baseline;\n    width: 350px;\n}<\/p>\n<p>    #button_calc {\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>    #button_calc:hover {\n      background-color: #f6f6f6;\n      border: 1px solid black;\n    }<\/p>\n<p>\t    .label_radio {\n\ttext-align: center;\n}\n<\/style>\n<div id=\"words_intro\"><b>Aturan praktisnya<\/b> , terkadang disebut aturan 68-95-99.7, menyatakan bahwa untuk kumpulan data tertentu dengan distribusi normal:<\/div>\n<div id=\"words_intro\"> <b>68%<\/b> nilai data berada dalam satu standar deviasi mean.<\/div>\n<div id=\"words_intro\"> <b>95%<\/b> nilai data berada dalam dua standar deviasi dari mean.<\/div>\n<div id=\"words_intro\"> <b>99,7%<\/b> nilai data berada dalam tiga standar deviasi mean.<\/div>\n<div id=\"words_intro\"> Uji pengetahuan Anda tentang aturan praktis menggunakan soal latihan di bawah ini.<\/div>\n<hr id=\"hr_top\">\n<div id=\"words_intro\"> Tinggi tanaman pada suatu taman tertentu berdistribusi normal dengan rata-rata <span id=\"mean\">12,3<\/span> inci dan simpangan baku <span id=\"sd\">4,1<\/span> inci.<\/div>\n<div id=\"words_intro\"> <b>Gunakan aturan praktis untuk memperkirakan persentase tanaman yang tingginya <span id=\"scenario\">antara 8,2 dan 16,4<\/span> inci.<\/b><\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"number\" id=\"answer\" value=\"\"> % <\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"check()\" value=\"Check Answer\"><\/div>\n<div id=\"words_output\"><b><span id=\"output\"><\/span><\/b> <\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"solution()\" value=\"Show Solution\"><\/div>\n<div id=\"solution_div\"><span id=\"solution_words\"><\/span><\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"gen()\" value=\"Generate New Question\"><\/div>\n<p><script><\/p>\n<p>var globalThing= {}; \/\/ Globally scoped object<\/p>\n<p>function check() {\t\n    if(globalThing.q_selected==\"between\") {\n        if(globalThing.sd_multiplier==1) {\n        var solution = 68;\n        }\n        if(globalThing.sd_multiplier==2) {\n        var solution = 95;\n        }\n        if(globalThing.sd_multiplier==3) {\n        var solution = 99.7;\n        }\n    } \/\/end between\n    if(globalThing.q_selected==\"less than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 84;\n            } else {\n            var solution = 16;\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 97.5;\n            } else {\n            var solution = 2.5;\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 99.85;\n            } else {\n            var solution = 0.15;\n            }\n        }\n    } \/\/end less than\n    if(globalThing.q_selected==\"greater than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 16;\n            } else {\n            var solution = 84;\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 2.5;\n            } else {\n            var solution = 97.5;\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 0.15;\n            } else {\n            var solution = 99.85;\n            }\n        }\n    } \/\/end greater than<\/p>\n<p>\/\/check if user-entered solution matches correct solution\nvar user_answer = document.getElementById('answer').value;\n    if (user_answer == solution) {\n    document.getElementById('output').innerHTML = \"Correct!\"\n    } else {\n    document.getElementById('output').innerHTML = \"Not quite yet...\"\n    }<\/p>\n<p>\/\/toggle answer showing\nvar result_display = document.getElementById(\"words_output\");\nresult_display.style.display = \"block\";\n} \/\/end massive check() function<\/p>\n<p>function solution() {\t\n    if(globalThing.q_selected==\"between\") {\n        if(globalThing.sd_multiplier==1) {\n        var solution = 68;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean.<\/p>\n<p>Thus, <b>68%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n        if(globalThing.sd_multiplier==2) {\n        var solution = 95;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean.<\/p>\n<p>Thus, <b>95%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n        if(globalThing.sd_multiplier==3) {\n        var solution = 99.7;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean.<\/p>\n<p>Thus, <b>99.7%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n    } \/\/end between\n    if(globalThing.q_selected==\"less than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 84;\n                    document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>84%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 16;                              document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 34% = 84% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 84% = <b>16%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>16%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 97.5;                           \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>97.5%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 2.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 47.5% = 97.5% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 97.5% = <b>2.5%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>2.5%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 99.85;                        \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>99.85%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 0.15;                       \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 49.85% = 99.85% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 99.85% = <b>0.15%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>0.15%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n    } \/\/end less than\n    if(globalThing.q_selected==\"greater than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 16;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 84% = <b>16%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>16%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 84;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>84%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 2.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 97.5% = <b>2.5%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>2.5%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 97.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>97.5%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 0.15;\n          document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 99.85% = <b>0.15%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>0.15%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 99.85;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>99.85%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n    } \/\/end greater than<\/p>\n<p>\/\/toggle hide\/show solution\n  var solution_div = document.getElementById(\"solution_div\");\n  solution_div.style.display = \"block\";\n} \/\/end massive solution() function<\/p>\n<p>function gen() {\t\nvar mean = Math.round(jStat.uniform.sample(20, 50)*10)\/10;\nvar sd = Math.round(jStat.uniform.sample(2, 6)*10)\/10;<\/p>\n<p>var sd_options = [1, 2, 3];\nglobalThing.sd_multiplier = sd_options[Math.floor(Math.random()*sd_options .length)];<\/p>\n<p>globalThing.sd_above = mean - (-globalThing.sd_multiplier*sd);\nglobalThing.sd_below = mean - (globalThing.sd_multiplier*sd);<\/p>\n<p>sd_above_below = [globalThing.sd_above, globalThing.sd_below];\nglobalThing.sd_selected = sd_above_below[Math.floor(Math.random()*sd_above_below.length)];<\/p>\n<p>var q_options = [\"between\", \"less than\", \"greater than\"];\nglobalThing.q_selected = q_options[Math.floor(Math.random()*q_options .length)];<\/p>\n<p>if (globalThing.q_selected == \"less than\") {\ndocument.getElementById('scenario').innerHTML = \"less than \" + globalThing.sd_selected.toFixed(1);\n} else if (globalThing.q_selected == \"greater than\") {\ndocument.getElementById('scenario').innerHTML = \"greater than \" + globalThing.sd_selected.toFixed(1);\n} else {\ndocument.getElementById('scenario').innerHTML = \"between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1);\n}<\/p>\n<p>\/\/fill in mean and sd in initial question\ndocument.getElementById('mean').innerHTML = mean;\ndocument.getElementById('sd').innerHTML = sd;<\/p>\n<p>\/\/toggle answer & solution to hide and clear input field\nvar result_display = document.getElementById(\"words_output\");\nresult_display.style.display = \"none\";\nvar solution_div = document.getElementById(\"solution_div\");\nsolution_div.style.display = \"none\";\ndocument.getElementById('answer').value = \"\";\n} \/\/end massive gen() function<\/p>\n<p>\/\/generate initial question\ngen();\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Aturan praktisnya , terkadang disebut aturan 68-95-99.7, menyatakan bahwa untuk kumpulan data tertentu dengan distribusi normal: 68% nilai data berada dalam satu standar deviasi mean. 95% nilai data berada dalam dua standar deviasi dari mean. 99,7% nilai data berada dalam tiga standar deviasi mean. Uji pengetahuan Anda tentang aturan praktis menggunakan soal latihan di bawah [&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>Aturan Praktek Soal Praktis - Statorial<\/title>\n<meta name=\"description\" content=\"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.\" \/>\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\/id\/aturan-praktis-masalah-empiris\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Aturan Praktek Soal Praktis - Statorial\" \/>\n<meta property=\"og:description\" content=\"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T21:10:12+00:00\" \/>\n<meta name=\"author\" content=\"Benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Ditulis oleh\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin anderson\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/\",\"url\":\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/\",\"name\":\"Aturan Praktek Soal Praktis - Statorial\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/id\/#website\"},\"datePublished\":\"2023-07-29T21:10:12+00:00\",\"dateModified\":\"2023-07-29T21:10:12+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/id\/#\/schema\/person\/3d17a1160dd2d052b7c78e502cb9ec81\"},\"description\":\"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/statorials.org\/id\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Masalah dalam mempraktikkan aturan praktis\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/id\/#website\",\"url\":\"https:\/\/statorials.org\/id\/\",\"name\":\"Statorials\",\"description\":\"Panduan anda untuk kompetensi statistik!\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/id\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"id\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/id\/#\/schema\/person\/3d17a1160dd2d052b7c78e502cb9ec81\",\"name\":\"Benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/statorials.org\/id\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/id\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/id\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Benjamin anderson\"},\"description\":\"Halo, saya Benjamin, pensiunan profesor statistika yang menjadi guru Statorial yang berdedikasi. Dengan pengalaman dan keahlian yang luas di bidang statistika, saya ingin berbagi ilmu untuk memberdayakan mahasiswa melalui Statorials. Baca selengkapnya\",\"sameAs\":[\"http:\/\/statorials.org\/id\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Aturan Praktek Soal Praktis - Statorial","description":"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.","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\/id\/aturan-praktis-masalah-empiris\/","og_locale":"id_ID","og_type":"article","og_title":"Aturan Praktek Soal Praktis - Statorial","og_description":"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.","og_url":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/","og_site_name":"Statorials","article_published_time":"2023-07-29T21:10:12+00:00","author":"Benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Ditulis oleh":"Benjamin anderson"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/","url":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/","name":"Aturan Praktek Soal Praktis - Statorial","isPartOf":{"@id":"https:\/\/statorials.org\/id\/#website"},"datePublished":"2023-07-29T21:10:12+00:00","dateModified":"2023-07-29T21:10:12+00:00","author":{"@id":"https:\/\/statorials.org\/id\/#\/schema\/person\/3d17a1160dd2d052b7c78e502cb9ec81"},"description":"Halaman ini menyediakan latihan soal untuk membantu Anda memahami aturan praktis, yang merupakan aturan penting dalam statistik.","breadcrumb":{"@id":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/id\/aturan-praktis-masalah-empiris\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/statorials.org\/id\/"},{"@type":"ListItem","position":2,"name":"Masalah dalam mempraktikkan aturan praktis"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/id\/#website","url":"https:\/\/statorials.org\/id\/","name":"Statorials","description":"Panduan anda untuk kompetensi statistik!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/id\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"id"},{"@type":"Person","@id":"https:\/\/statorials.org\/id\/#\/schema\/person\/3d17a1160dd2d052b7c78e502cb9ec81","name":"Benjamin anderson","image":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/statorials.org\/id\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/id\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/id\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Benjamin anderson"},"description":"Halo, saya Benjamin, pensiunan profesor statistika yang menjadi guru Statorial yang berdedikasi. Dengan pengalaman dan keahlian yang luas di bidang statistika, saya ingin berbagi ilmu untuk memberdayakan mahasiswa melalui Statorials. Baca selengkapnya","sameAs":["http:\/\/statorials.org\/id"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/posts\/450"}],"collection":[{"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/comments?post=450"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/posts\/450\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/media?parent=450"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/categories?post=450"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/id\/wp-json\/wp\/v2\/tags?post=450"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}