-
Notifications
You must be signed in to change notification settings - Fork 11
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
Decide how to pass on "count" (or "weight"?) #48
Comments
While thinking about what to do with |
If we are going to use "The weight" as a data mask. Can we make something like a masked array? |
That would be a good solution. Ideally we implement something that can replace the data we have and "just work" for tasks like |
I am trying to picture how does out pipeline handle the mask/weight. The weight array flows with the pipeline. Another interesting question is should we include the weight to our output file, psrfits file. |
Yes, my hope was that by having a float weight, one could just "dedisperse" it, etc. Ideally, we do indeed have the weight in the output file too. |
We briefly had a
BaseData
subclass ofndarray
with acount
attribute (#44), but this was rather problematic, so for now we are using a structured dtype with 'data' and 'count' entries (#38). Should think if that is really what we want.The text was updated successfully, but these errors were encountered: