python 中的 xml2array
file.xml 包含以下数据结构:
<table>
<row>
<x>10</x>
<t>10:00</t>
</row>
<row>
<x>20</x>
<t>10:05</t>
</row>
</table>
我有数百个 x,t 对。我需要绘制 x 与 t 的关系图。 如果您能帮助我解决 python 和 matplotlib 的问题,我将不胜感激。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
10:05
表示 10 分钟、5秒。它使用
convert_t
将其转换为浮点数。以使 XML 有效。
10:05
means something like 10 minutes, 5seconds. It converts this to a float using
convert_t
.</table>
was added to make the XML valid.