Get the range of values of total count map Returns ------- tuple(float) (value_min, value_max)
(self)
| 752 | self._get_sum(client=client) |
| 753 | |
| 754 | def get_total_count_range(self): |
| 755 | """ |
| 756 | Get the range of values of total count map |
| 757 | |
| 758 | Returns |
| 759 | ------- |
| 760 | tuple(float) |
| 761 | (value_min, value_max) |
| 762 | """ |
| 763 | total_count = self.get_total_count() |
| 764 | return total_count.min(), total_count.max() |
| 765 | |
| 766 | @observe(str("selected_for_preview")) |
| 767 | def _update_roi(self, change): |
no test coverage detected