Last active
December 17, 2023 02:02
-
-
Save galenseilis/4bd603d967c2ff82f52ecc073148659e to your computer and use it in GitHub Desktop.
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
# Ugly one-liner from an interactive session... sorry! | |
import numpy as np; | |
from scipy.stats import ttest_1samp as t; | |
import matplotlib.pyplot as plt; | |
[ | |
plt.scatter( | |
np.arange(1,101), | |
[t(np.random.normal(size=n+1), 1).pvalue for n in range(100)], | |
alpha=1/np.sqrt(100), | |
color='g') | |
for j in range(1000)]; | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like some sort of convergent behaviour to me.