Add some commented debug prints for default fmtr

epoch_indexing_and_dataviz_layer
Tyler Goodlet 2022-12-08 15:45:54 -05:00
parent 135627e142
commit 7aef31701b
1 changed files with 27 additions and 5 deletions

View File

@ -439,12 +439,37 @@ class IncrementalFormatter(msgspec.Struct):
) -> None: ) -> None:
# write pushed data to flattened copy # write pushed data to flattened copy
new_y_nd = new_from_src[data_field] y_nd_new = new_from_src[data_field]
self.y_nd[read_slc] = new_y_nd self.y_nd[read_slc] = y_nd_new
x_nd_new = self.x_nd[read_slc] x_nd_new = self.x_nd[read_slc]
x_nd_new[:] = new_from_src[self.index_field] x_nd_new[:] = new_from_src[self.index_field]
# x_nd = self.x_nd[self.xy_slice]
# y_nd = self.y_nd[self.xy_slice]
# name = self.viz.name
# if 'trade_rate' == name:
# s = 4
# print(
# f'{name.upper()}:\n'
# 'NEW_FROM_SRC:\n'
# f'new_from_src: {new_from_src}\n\n'
# f'PRE self.x_nd:'
# f'\n{list(x_nd[-s:])}\n'
# f'PRE self.y_nd:\n'
# f'{list(y_nd[-s:])}\n\n'
# f'TO WRITE:\n'
# f'x_nd_new:\n'
# f'{x_nd_new[0]}\n'
# f'y_nd_new:\n'
# f'{y_nd_new}\n'
# )
# XXX: was ``.format_xy()`` # XXX: was ``.format_xy()``
def format_xy_nd_to_1d( def format_xy_nd_to_1d(
self, self,
@ -749,9 +774,6 @@ class StepCurveFmtr(IncrementalFormatter):
x_step = self.x_nd[start:stop] x_step = self.x_nd[start:stop]
y_step = self.y_nd[start:stop] y_step = self.y_nd[start:stop]
# pack in duplicate final value to complete last step level
y_step[-1, 1] = last
# debugging # debugging
# if y_step.any(): # if y_step.any():
# s = 3 # s = 3