Hello, I am currently learning matplotlib. I have just learnt about figures and the add_axes()
method. For the add_axes()
method, you pass in a list containing [left, bottom, width, height]
.
Obviously, width
and height
controls the width and height of the graph, but what does left
and bottom
do?
Here is my add_axes()
-> axes = figure.add_axes([0.1, 0.1, 0.6, 0.6])
I keep changing left
and bottom
, but nothing on the plot is changing. I read the matplotlib documentation on figure.add_axes()
, but it did not explain what left
and bottom
did.
Thank you!