PLot raw experiment data for fitting.
(self)
| 617 | self._update_canvas() |
| 618 | |
| 619 | def plot_experiment(self): |
| 620 | """ |
| 621 | PLot raw experiment data for fitting. |
| 622 | """ |
| 623 | |
| 624 | # Do nothing if no data is loaded |
| 625 | if self.io_model.data is None: |
| 626 | return |
| 627 | |
| 628 | data_arr = np.asarray(self.io_model.data) |
| 629 | self.exp_data_update({"value": data_arr}) |
| 630 | |
| 631 | def plot_vertical_marker(self, *, e_low=None, e_high=None): |
| 632 | # It doesn't seem necessary to force the marker inside the selected range. |
no test coverage detected