是否可以使用Python matplotlib获得下面给出的类似情节?一个轴和多个线我知道如何绘制。但是,对于相同的折线图,我们可以使用2 x axes
和2 y axes
绘制一个图。
数据输入格式:特定纬度和经度中特定时间的特殊计数。
[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个轴。