You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I put this comment on the minitest, to keep track:
Another metric that would be very useful in QA, both for simulated and true data,
would be a simple table, maybe after cell 58 about the different ZWARN flags.
It would help track what are causing ZWARN flags to be nonzero
It could simply be something of that kind:
import redrock.zwarning
flags = redrock.zwarning.ZWarningMask().flags
to_print = "FLAG "
for objtype in set(truth['TEMPLATETYPE']):
to_print += objtype+' | '
print(to_print)
for objtype in set(truth['TEMPLATETYPE']):
to_print = flags_name + ' | '
for i in range(11):
w = (dsq_z['TEMPLATETYPE']==objtype) & ((dsq_z['ZWARN']&2**i)>0)
to_print += str(w.sum())+' | '
print(to_print)
The text was updated successfully, but these errors were encountered:
I put this comment on the minitest, to keep track:
Another metric that would be very useful in QA, both for simulated and true data,
would be a simple table, maybe after cell 58 about the different
ZWARN
flags.It would help track what are causing
ZWARN
flags to be nonzeroIt could simply be something of that kind:
The text was updated successfully, but these errors were encountered: