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

Dynamic option for outliers #210

Open
Dooruk opened this issue Oct 25, 2024 · 0 comments
Open

Dynamic option for outliers #210

Dooruk opened this issue Oct 25, 2024 · 0 comments
Assignees
Labels
bug Something is not working enhancement New feature or request

Comments

@Dooruk
Copy link
Contributor

Dooruk commented Oct 25, 2024

I tested using different percentage values rather than %100 and this doesn't work. Could use some 🎶 refactoring 🎵

# Decide how many values to throw out on each end of the dataset
n = datavar.size
n_throw_out = ((100-percentage_capture) * n / 100) / 2
# The value needs to be an integer
n_throw_out = np.floor(n_throw_out).astype(int)

@Dooruk Dooruk added bug Something is not working enhancement New feature or request labels Oct 25, 2024
@Dooruk Dooruk self-assigned this Oct 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something is not working enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant