Args: filepath (str): a string that contains the absolute path, including the file name, where the visualized image will be saved.
(self, filepath)
| 281 | self.ax = ax |
| 282 | |
| 283 | def save(self, filepath): |
| 284 | """ |
| 285 | Args: |
| 286 | filepath (str): a string that contains the absolute path, including the file name, where |
| 287 | the visualized image will be saved. |
| 288 | """ |
| 289 | self.fig.savefig(filepath) |
| 290 | |
| 291 | def get_image(self): |
| 292 | """ |
no outgoing calls
no test coverage detected