-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plotting defaults? #4
Comments
Okay, plotting test stat values requires a full rewrite of the current structure of the permutation_test_builder, because currently it never even has the full vector of test stat distribution in memory. Plotting what the test stats each specifically measure is a pain for some of them (kuiper, ks) [have to find the relevant points], not sensible for some (AD, dts) [they aren't linear in ecdf], but is easyish for others (cvm, wass). On the other hand, why bother building this functionality? It would provide mostly educational value -- and help in the manual I suppose (here is what KS does, etc). What we can do (and I've started on already) is code for plotting the two ECDFS and the sampling distribution of ECDFs, which is nice. |
Could also plot the difference between the two ECDFs, and a sampling distribution for that? |
pngs explaining the test stats are in the docs/readme/website. plot defaults for distribution still seems a good idea. plausibly easily done by making an S3 class, editing the permutation test builder, and making a simple plotting function. Spitting out the distribution of test stats is probably worthwhile for other reasons |
It would be nice if there was a good plot default we could create. Two obvious options arise -- plotting what the test stat measures, and plotting the test stat values.
The text was updated successfully, but these errors were encountered: