Open sinhrks opened 8 years ago
closes #92, closes #93, closes #94.
annotate
backend
@scls19fr If it looks ok, I'm adding some tests.
cm = pdml.ConfusionMatrix([1, 2, 1, 1], [1, 2, 1, 2]) cm.plot(figsize=(5, 5))
cm = pdml.ConfusionMatrix(np.random.choice([1, 2, 3, 4], 100), np.random.choice([1, 2, 3, 4], 100)) cm.plot(figsize=(5, 5), annotate=True)
Coverage decreased (-0.003%) to 94.778% when pulling 18907db0336a777604afe03e6ce9dd8eb44105d7 on sinhrks:confmat_plot into 56c36199f37fa461def618d6050dde99bde63a46 on pandas-ml:master.
That's very nice.
Does ticks can be moved to be at boundaries ?
How a normalized CM is displayed ?
closes #92, closes #93, closes #94.
annotate
keyword to show annotationsbackend
keyword to output single & consistent plot@scls19fr If it looks ok, I'm adding some tests.