How can I draw a plot by overlapping it? #2330
-
I want to draw a graph like the picture I posted, but how can I do it like sim.plot? Thank you so much for always helping me. It helps a lot. |
Beta Was this translation helpful? Give feedback.
Answered by
valentinsulzer
Sep 29, 2022
Replies: 2 comments 1 reply
-
You can't do this with plt.plot(sim.solution["Time [s]"].data, sim.solution["Terminal voltage [V]"].data) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rtimms
-
I made the code like this. However, I couldn't draw a graph of overlapping shapes as I wanted. I'd appreciate it if you could tell me how to fix it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't do this with
sim.plot
. You have to usematplotlib
directly, for example