the file.xml contains the following data structure:
<table>
<row>
<x>10</x>
<t>10:00</t>
</row>
<row>
<x>20</x>
<t>10:05</t>
</row>
</table>
I have hundred of x,t pairs. I need to plot x vs. t.
I would be thankful if you can help me to solve the problem with python and matplotlib.
10:05means something like 10 minutes, 5seconds. It converts this to a float using
convert_t.</table>was added to make the XML valid.