Created
December 30, 2022 22:53
-
-
Save dlakelan/8e13fb423ba92fe3c202bf17760ebb02 to your computer and use it in GitHub Desktop.
Effect size when you first "check if it's real"
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
using Distributions, HypothesisTests, DataFrames, DataFramesMeta, StatsPlots | |
function dowork(effsizes,reps) | |
res = typeof((effsize=1.0,meanval=1.0,pval=0.1))[] | |
for s in effsizes | |
for r in 1:reps | |
sam = rand(Normal(s,1.0),15) | |
tt = OneSampleTTest(sam) | |
push!(res,(effsize=s,meanval=mean(sam),pval=pvalue(tt))) | |
end | |
end | |
res | |
end | |
results = DataFrame(dowork([0.05,0.1,0.2,0.5,0.8,1.0,1.5,2.0],100)) | |
realeffects = @subset(results,:pval .< 0.05) | |
@df realeffects histogram(:meanval./:effsize; label="Effect Estimate/Reality",normalize=true, title="Histogram of the Relative Effect Size Estimate\nfor \"real\" effects") | |
p = plot!([1.0,1.0],[0.0,3.0]; color=:red,label="1.0") | |
display(p) | |
p = @df realeffects scatter(:effsize, :meanval ./ :effsize; title="Relative Effect Size\nAs Function of Real size") | |
display(p) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment