How can multiple scales can be implemented in Matplotlib? I am not talking about the primary and secondary axis plotted against the same x-axis, but something like many trends which have different scales plotted in same y-axis and that can be identified by their colors.
For example, if I have trend1 ([0,1,2,3,4]) and trend2 ([5000,6000,7000,8000,9000]) to be plotted against time and want the two trends to be of different colors and in Y-axis, different scales, how can I accomplish this with Matplotlib?
When I looked into Matplotlib, they say that they don’t have this for now though it is definitely on their wishlist, Is there a way around to make this happen?
Are there any other plotting tools for python that can make this happen?
If I understand the question, you may interested in this example in the Matplotlib gallery.
Yann’s comment above provides a similar example.
Edit – Link above fixed. Corresponding code copied from the Matplotlib gallery: