I am ploting two different lines meaning that each of them have a different list for Y axis values and X axis values. How can I fill the area between them if the X axis values are different?
Let's say I have the lists for every axis for every curve:
- listXcurve1
- listYcurve1
- listXcurve2
- listYcurve2
I am trying to use fill_between, but the function is asking for: ax.fill_between(x,y1,y2)
Is there anyway to do it?