Axes object Raises: ModuleNotFoundError: If `matplotlib` is not installed .. plot:: :scale: 75 >>> from torch import rand, randint >>> from torchmetrics.classification import BinaryPrecisionRecallCurve >>> preds = rand(20) >>> target = randint(2, (20,)) >>> metric = BinaryPrecisionRecallCurve() >>> metric.update(preds, target) >>> fig_, ax_ = metric.plot(score=True) Tr