Created
January 11, 2020 21:48
-
-
Save Lakens/a6f90851f963aa1a0aefa712116bee21 to your computer and use it in GitHub Desktop.
plot single p-value over time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n<-2000 #total number of datapoints (per condition) you are willing to collect after initial 10 | |
D<-0.0 #True effect size (Keep SD below to 1, otherwise, this is just mean dif, not d) | |
SD<-1 #Set True standard deviation. | |
p<-numeric(n) #store p-values | |
x<-numeric(n) #store x-values | |
y<-numeric(n) #store y-values | |
n<-n+10 #script calculates p-values after 10 people in each condition, so add 10 to number of datapoints | |
for(i in 10:n){ #for each simulated participants after the first 10 | |
x[i]<-rnorm(n = 1, mean = 0, sd = SD) | |
y[i]<-rnorm(n = 1, mean = D, sd = SD) | |
z<-t.test(x[1:i],y[1:i], var.equal=TRUE) #perform the t-test | |
p[i]<-z$p.value | |
} | |
p<-p[10:n] #Remove first 10 empty p-values | |
#Create the plot | |
#png(file="p-value_over_time.png",width=4000,height=2000, , units = "px", res = 500) | |
plot(0, col="red", lty=1, lwd=3, ylim=c(0,1), xlim=c(10,n), type="l", xlab='sample size', ylab='p-value', cex.lab=1, cex.axis=1, xaxt = "n") | |
lines(p, lwd=2) | |
abline(h=0.05, col="darkgrey", lty=2, lwd=2) #draw ine at p = 0.05 | |
axis(1, at=seq(0, n-10, by=(n-10)/4), labels = seq(10, n, by=(n-10)/4)) | |
#dev.off() | |
min(p) #Return lowest p-value from all looks | |
cat("The lowest p-value was observed at sample size",which.min(p)+10) #Return the sample size at which the p-value was smallest | |
cat("The p-value dropped below 0.05 for the first time as sample size",which(p<0.05)[1]+10) #Return the sample size at which the p-value dropped below 0.05 for the first | |
#? Daniel Lakens, 2016. | |
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. https://creativecommons.org/licenses/by-nc-sa/4.0/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment