Skip to content

Instantly share code, notes, and snippets.

@rawlik
Created October 30, 2023 17:56
Show Gist options
  • Save rawlik/cf5c1c7ce2af9e64e5dcdf46f4fb0e62 to your computer and use it in GitHub Desktop.
Save rawlik/cf5c1c7ce2af9e64e5dcdf46f4fb0e62 to your computer and use it in GitHub Desktop.
Remove outliers
def remove_outliers(a, n):
asorted = a[np.argsort(np.abs(a - np.median(a)))]
return asorted[: -n]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment