Posts by Emmanuel Ferro • 1 point
2 posts
-
0
votes1
answer43
viewsA: How to change the position of the graph in the figure in matplotlib
I found a solution. I plotted a point to the right of the graph, in (60.0), making the center of the graph no longer match the origin. It’s not the most elegant thing in the world but the result is…
-
-1
votes1
answer43
viewsQ: How to change the position of the graph in the figure in matplotlib
The graph became small and poorly positioned. for i in df.index: plt.plot(df.at[i,'x0'], df.at[i,'y0'], label=i) # A e B plt.axvline(x=ABx, ymin=0.1, ymax=0.55, linestyle = "dashed", color='gray')…