带有多个轴matplotlib的折线图

时间:2015-05-19 20:18:40

标签: python file matplotlib plot

是否可以使用Python matplotlib获得下面给出的类似情节?一个轴和多个线我知道如何绘制。但是,对于相同的折线图,我们可以使用2 x axes2 y axes绘制一个图。 enter image description here

数据输入格式:特定纬度和经度中特定时间的特殊计数。

[0]   [1]      [2]       [3]
3123 12:00:01 73.789561 19.997404 
5342 12:15:00 73.780732 19.994279 
4515 12:15:30 73.785531 19.994191 
4515 12:00:20 73.786610 19.993679 
6265 12:10:10 73.784650 19.997702

col[0] int count 
col[1] time interval
col[2] longitude
col[3] latitude 

X1 = col[0]
y1 = col[1]
x2 = col[3]
y2 = col[2]

如何在一个线图中包含所有4个轴。

1 个答案:

答案 0 :(得分:0)

您可以使用ax.twinx()ax.twiny()来完成您的目标。看看this example,它应该让你走上正确的道路。