So, I have a list of stations (string) like this :
station_list=[station1, station2, station3, ..., station63]
And I have a list of lists with the measures of each stations, but they haven't the same number of measures. So, I have something like this :
measure_list=[[200.0, 200.0, 200.0, 200.0, 200.0, 300.0], [400.0, 400.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0, 300.0], [300.0, 400.0, 400.0, 400.0, 400.0], ..., [1000.0, 1000.0, 1000.0, 1000.0, 1000.0], [7000.0]]
the measure_list have 63 "sub-list", a sub-list for each station.
Finally, I would like to create a graph with the stations on the x-axis and the measures on the y-axis for a comparison between all the station's measures.
Thanks for your help. (and sorry for my bad english ;) )
