Answers for "turn off subplot"

0

turn off subplot

import matplotlib.pyplot as plt

hf, ha = plt.subplots(3,2)
ha[-1, -1].axis('off')

plt.show()
Posted by: Guest on May-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language