I have the next graph. As you notice, there are two graphs in log-log axex. How could I add a tendency line on the purple one (WOR*)?.
The code for this graph is:
axesA2[2].plot(Alm2['mes'],Alm2['WOR'],color='green')
axesA2[2].plot(Alm2['mes'],Alm2['DerivWOR'],color='purple')
axesA2[2].legend();
axesA2[2].set_title('Time vs WOR - WOR*');
axesA2[2].set_xscale('log')
axesA2[2].set_yscale('log')
axesA2[2].set_xlabel("mes");
axesA2[2].set_ylabel("WOR-WOR*");
axesA2[2].grid(True);
By the way, the legend is not showing, but I can handle with that later.
Thanks in advance.