celldetective 1.4.1__py3-none-any.whl → 1.4.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1504,8 +1504,9 @@ class TableUI(CelldetectiveMainWindow):
1504
1504
  if self.projection_option.isChecked():
1505
1505
 
1506
1506
  self.projection_mode = self.projection_op_cb.currentText()
1507
- op = getattr(self.current_data.groupby(self.groupby_cols), self.projection_mode)
1508
- group_table = op(self.current_data.groupby(self.groupby_cols))
1507
+ group_table = getattr(
1508
+ self.current_data.groupby(self.groupby_cols), self.projection_mode
1509
+ )(numeric_only=True)
1509
1510
 
1510
1511
  for c in self.static_columns:
1511
1512
  try: