Returns: Figure and Axes object Raises: ModuleNotFoundError: If `matplotlib` is not installed .. plot:: :scale: 75 >>> # Example plotting a single value >>> import torch >>> from torchmetrics.nominal import TheilsU >>> metric = TheilsU(num_classes=10) >>> metric.update(torch.randint(10, (10,)), torch.randint(10, (10,))) >>> fig_, ax_ = metric.plot() .. plot:: :scale: 75 >>> # Example plotting multiple values >>> import torch >>> from torchmetrics.nominal import TheilsU >>> metric = TheilsU(num_classes=10) >>> values = [ ] >>> for _ in range(10): ... values.append(metric(torch.randint(10, (10,)), torch.randint(10, (10,)))) >>> fig_, ax_ = metric.plot(values) )