Answers for "matplotlib plot remove margins"

2

matplotlib plot remove margins

import matplotlib.pyplot as plt
plt.subplots_adjust(left=0, right=1, top=1, bottom=0)
Posted by: Guest on July-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language