最近中文字幕高清中文字幕无,亚洲欧美高清一区二区三区,一本色道无码道dvd在线观看 ,一个人看的www免费高清中文字幕

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

Two-tailed vs One-Tailed P-value

R day 3

In clinical trial studies, P-value is critical for measuring drug efficacy. Typically, the statistical analysis Plan will describe statistical significance as: P-value <0.05 for a two-tailed Log Rank Test.

Recently, I came across a study with the statistical significance as P-value <0.025 for a one-tailed Log Rank test in the analysis plan.

Question:

Does two-tailed P-value= 0.05 means the same as One-tailed P-value =0.025 ?

If they are not the same? what are the differences?

let’s trying to figure out these questions by the following procedures:

  • What does P-value mean
  • What does two-tailed P-value mean
  • What does one-tailed P-value mean

Without loss of generality, P-value is the probability of the test results observed assuming the null hypothesis is correct.

Null hypothesis: the mean value is the same for Group A and Group B

H0: mean(Group A) = Mean(Group B)

Two-tailed P-value Test:

P-value (<0.05) reject or accept (p> 0.05) the Null hypothesis.

P-value >0.05, accept the Null hypothesis, which means mean value is the same for Group A and Group B.

P-value <0.05, Reject the Null hypothesis, the mean value of Group A is different from the mean value in Group B.

  • Key interpretation: this part only stated the mean value for two Groups are not the same, but we can not take for grant that the Mean(group A) > mean(group B) or Mean(group B) > Mean(group A)

One-tailed P-value Test

P-value (<0.025) reject or accept (p> 0.025) the Null hypothesis

P-value <0.025, accept the Null hypothesis, the mean value for Group A strictly greater the mean value for Group B.

Without loss of generality, P-value is the probability of the test results observed assuming the null hypothesis is correct.

Null hypothesis: the mean value is the same for Group A and Group B

H0: mean(Group A) = Mean(Group B)

Two-tailed P-value Test:

P-value (<0.05) reject or accept (p> 0.05) the Null hypothesis.

P-value >0.05, accept Null hypothesis, which means mean value is the same for Group A and Group B.

P-value <0.05, Reject the Null hypothesis, mean value of Group A is different from the mean value in Group B.

  • Key interpretation: this part only stated the mean value for two Groups are not the same, but we can not take for grant that mean(group A) > mean(group B) or mean(group B) > mean(group A)
m<- 100
s<- 30
x<- seq(from=m-5*s, to=m+5*s, by=1)
y<- dnorm(x,mean=m,sd=s)
plot(x,y,type="l", col="darkgreen", lwd=2,las=1, main="Two-Tailed")
abline(v=m+2*s, col="orange",lwd=3)
abline(v=m-2*s, col="orange",lwd=3)
polygon(c(x[x>=160],160),c(y[x>=160],y[x==0]),col="lightblue") 
polygon(c(x[x<=40],40),c(y[x<=40],y[x==0]),col="lightblue") 

One-tailed P-value Test

P-value (<0.025) reject or accept (p> 0.025) the Null hypothesis

P-value <0.025, accept Null hypothesis, the mean value for Group A strictly greater the mean value for Group B.

m<- 100
s<- 30
x<- seq(from=m-5*s, to=m+5*s, by=1)
y<- dnorm(x,mean=m,sd=s)
plot(x,y,type="l", col="darkgreen", lwd=2,las=1, main="One-Tailed")
abline(v=m+2*s,col="purple",lwd=3)
polygon(c(x[x>=160],160),c(y[x>=160],y[x==0]),col="lightblue")

Summary:

In most cases, if the variable is continuous, a One-tailed p-value is the same as Two-tailed p-value/2. But for non-inferiority studies, we prefer to use One-tailed p-value.

Thanks Jun and Renee 5 for the p-value knowledge with me .

Happy Studying!

Ref:
https://www.r-bloggers.com/shading-regions-of-the-normal-the-stanine-scale/
Thanks Jun and Renee 5 for the p-value knowledge with me.

Happy Studying!

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消