{"id":403,"date":"2023-07-30T22:14:40","date_gmt":"2023-07-30T22:14:40","guid":{"rendered":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/"},"modified":"2023-07-30T22:14:40","modified_gmt":"2023-07-30T22:14:40","slug":"t-score-p-wert-rechner","status":"publish","type":"post","link":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/","title":{"rendered":"T-score-zu-p-wert-rechner"},"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;\ntext-align: center;\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>#calcTitle {\ntext-align: center;\nfont-size: 20px;\nmargin-top: 15px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', serif;\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>    #button {\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:hover {\n      background-color: #f6f6f6;\n      border: 1px solid black;\n    }<\/p>\n<p>    .label_radio {\n\ttext-align: center;\n}\n<\/style>\n<div id=\"words\"><label for=\"t\"><b>t markieren<\/b><\/label><input type=\"number\" id=\"t\" min=\"0\" value=\"1.5\"><\/div>\n<div id=\"words\"> <label for=\"df\"><b>Freiheitsgrade<\/b><\/label><input type=\"number\" id=\"df\" min=\"0\" value=\"11\"><\/div>\n<div id=\"words\">\n<p style=\"text-align: left\"> <b>Einseitige oder zweiseitige Hypothese?<\/b><\/p>\n<p> <label class=\"label_radio\" for=\"one_tailed\">Einseitig<\/label><input type=\"radio\" id=\"one_tailed\" name=\"tails\"> <label class=\"label_radio\" for=\"two_tailed\">Zweischw\u00e4nzig<\/label> <input type=\"radio\" id=\"two_tailed\" name=\"tails\" checked=\"\"><\/p>\n<\/div>\n<div id=\"words\">\n<p style=\"text-align: left\"> <b>Signifikanzniveau<\/b><\/p>\n<p> <label class=\"label_radio\" for=\"one\">0,01<\/label><input type=\"radio\" id=\"one\" name=\"sig\" value=\"0.01\"> <label class=\"label_radio\" for=\"five\">0,05<\/label><input type=\"radio\" id=\"five\" name=\"sig\" value=\"0.05\" checked=\"\"> <label class=\"label_radio\" for=\"ten\">0,10<\/label> <input type=\"radio\" id=\"ten\" name=\"sig\" value=\"0.10\"><\/p>\n<\/div>\n<div id=\"words\"><input type=\"button\" id=\"button\" onclick=\"getPVALUE()\" value=\"Calculate\"><\/div>\n<div>\n<p> P-Wert: <span id=\"exactProb\">0,08088<\/span><\/p>\n<\/div>\n<div>\n<p> Das Ergebnis ist bei p &lt; <span id=\"sig_level\">0,05<\/span> <span id=\"sig_verdict\">NICHT SIGNIFIKANT<\/span><\/p>\n<\/div>\n<p><script><\/p>\n<p>\/\/the following function originated from https:\/\/stackoverflow.com\/questions\/16194730\/seeking-a-statistical-javascript-function-to-return-p-value-from-a-z-score\/30435852<\/p>\n<p>function getPVALUE() {<\/p>\n<p>\t\/\/get input degrees of freedom, t-value\n\tvar df = document.getElementById('df').value*1;\n\tvar t_input = document.getElementById('t').value*1;\n\tvar t = Math.abs(t_input);<\/p>\n<p>\t\/\/calculate p-value\n\tvar p_value = 1 - jStat.studentt.cdf(t, df);<\/p>\n<p>\t\/\/get tails input\n\tif (document.getElementById('two_tailed').checked) {\n\t\tp_value = p_value * 2;\n\t}\t<\/p>\n<p>\t\/\/get significance level input\n\tvar sig_level = '';\n\tif (document.getElementById('one').checked) {\n\t\tsig_level = 0.01;\n\t} else if (document.getElementById('five').checked) {\n\t\tsig_level = 0.05;\n\t} else {\n\t    sig_level = 0.10;\n\t}<\/p>\n<p>\t\/\/get significance verdict\n\tvar sig_verdict = '';\n\tif (p_value < sig_level) {\n\t\tsig_verdict = 'SIGNIFICANT';\n\t} else {\n\t\tsig_verdict = 'NOT SIGNIFICANT';\n\t}\n\t\n\t\/\/output values\n    document.getElementById('exactProb').innerHTML = p_value.toFixed(5);\n\tdocument.getElementById('sig_level').innerHTML = sig_level.toFixed(2);\n\tdocument.getElementById('sig_verdict').innerHTML = sig_verdict;\n  }\n\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>t markieren Freiheitsgrade Einseitige oder zweiseitige Hypothese? Einseitig Zweischw\u00e4nzig Signifikanzniveau 0,01 0,05 0,10 P-Wert: 0,08088 Das Ergebnis ist bei p &lt; 0,05 NICHT SIGNIFIKANT<\/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>T-Score-zu-P-Wert-Rechner \u2013 Statorials<\/title>\n<meta name=\"description\" content=\"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.\" \/>\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\/de\/t-score-p-wert-rechner\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"T-Score-zu-P-Wert-Rechner \u2013 Statorials\" \/>\n<meta property=\"og:description\" content=\"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-30T22:14:40+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\/de\/t-score-p-wert-rechner\/\",\"url\":\"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/\",\"name\":\"T-Score-zu-P-Wert-Rechner \u2013 Statorials\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/de\/#website\"},\"datePublished\":\"2023-07-30T22:14:40+00:00\",\"dateModified\":\"2023-07-30T22:14:40+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\"},\"description\":\"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Heim\",\"item\":\"https:\/\/statorials.org\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"T-score-zu-p-wert-rechner\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/de\/#website\",\"url\":\"https:\/\/statorials.org\/de\/\",\"name\":\"Statorials\",\"description\":\"Ihr Leitfaden f\u00fcr statistische Kompetenz !\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0\",\"name\":\"Dr. Benjamin Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr. Benjamin Anderson\"},\"description\":\"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen\",\"sameAs\":[\"https:\/\/statorials.org\/de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"T-Score-zu-P-Wert-Rechner \u2013 Statorials","description":"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.","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\/de\/t-score-p-wert-rechner\/","og_locale":"de_DE","og_type":"article","og_title":"T-Score-zu-P-Wert-Rechner \u2013 Statorials","og_description":"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.","og_url":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/","og_site_name":"Statorials","article_published_time":"2023-07-30T22:14:40+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\/de\/t-score-p-wert-rechner\/","url":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/","name":"T-Score-zu-P-Wert-Rechner \u2013 Statorials","isPartOf":{"@id":"https:\/\/statorials.org\/de\/#website"},"datePublished":"2023-07-30T22:14:40+00:00","dateModified":"2023-07-30T22:14:40+00:00","author":{"@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0"},"description":"Dieser Rechner ermittelt den p-Wert, der einem gegebenen T-Score und einem Freiheitsgrad zugeordnet ist.","breadcrumb":{"@id":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/de\/t-score-p-wert-rechner\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Heim","item":"https:\/\/statorials.org\/de\/"},{"@type":"ListItem","position":2,"name":"T-score-zu-p-wert-rechner"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/de\/#website","url":"https:\/\/statorials.org\/de\/","name":"Statorials","description":"Ihr Leitfaden f\u00fcr statistische Kompetenz !","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"Person","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/ec75c4d6365f2708f8a0ad3a42121aa0","name":"Dr. Benjamin Anderson","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/statorials.org\/de\/#\/schema\/person\/image\/","url":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","contentUrl":"https:\/\/statorials.org\/de\/wp-content\/uploads\/2023\/11\/Benjamin-Anderson-96x96.jpg","caption":"Dr. Benjamin Anderson"},"description":"Hallo, ich bin Benjamin, ein pensionierter Statistikprofessor, der sich zum engagierten Statorials-Lehrer entwickelt hat. Mit umfassender Erfahrung und Fachwissen auf dem Gebiet der Statistik bin ich bestrebt, mein Wissen zu teilen, um Studenten durch Statorials zu bef\u00e4higen. Mehr wissen","sameAs":["https:\/\/statorials.org\/de"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/403"}],"collection":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/comments?post=403"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/posts\/403\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/media?parent=403"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/categories?post=403"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/de\/wp-json\/wp\/v2\/tags?post=403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}