I'd like to have these two columns in the `pixel_dataframe` for pure convenience. ``` p = fact.instrument.get_pixel_dataframe() p['bias_board_id'] = p.bias_patch_id // 32 p['bias_channel_id'] = p.bias_patch_id % 32 ```