Skip to content
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

Add kurtosis and other metrics to evaluate quality of error standardization #506

Open
rhugonnet opened this issue Apr 12, 2024 · 0 comments
Labels
new-feature A new functionality / feature or request

Comments

@rhugonnet
Copy link
Contributor

See #442, closed for now.

Would need to come with a documentation page specific to it.

Here's a bit of code to do the kurtosis calculation:

from scipy.stats import kurtosis
kbef = kurtosis(dh_arr, nan_policy="omit")
kaft = kurtosis(z_dh.flatten(), nan_policy="omit")
print("Excess kurtosis before standardization: {}".format(kbef))
print("Excess kurtosis after standardization: {}".format(kaft))
@rhugonnet rhugonnet added the new-feature A new functionality / feature or request label Apr 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new-feature A new functionality / feature or request
Projects
None yet
Development

No branches or pull requests

1 participant