We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The keyword arguments outlier_sigma and outlier_mwidth are not passed on into detrend() I think they should go somewhere in here:
outlier_sigma
outlier_mwidth
detrend()
Lines 122 and following:
## Iterative sigma-clipping ## ------------------------ print('Starting initial outlier detection') omask = mask & sigma_clip(cflux, max_iter=10, max_sigma=5, mexc=mask) ofrac = (~omask).sum() / omask.size if ofrac < 0.25: mask &= omask print(' Flagged %i (%4.1f%%) outliers.' % ((~omask).sum(), 100*ofrac)) else: print(' Found %i (%4.1f%%) outliers. Not flagging.' % ((~omask).sum(), 100*ofrac))
Your maintenance work is very much appreciated!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The keyword arguments
outlier_sigma
andoutlier_mwidth
are not passed on intodetrend()
I think they should go somewhere in here:
Lines 122 and following:
Your maintenance work is very much appreciated!
The text was updated successfully, but these errors were encountered: