Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tools/purgatory/plotXMLAttr.py
169673 views
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
4
# Copyright (C) 2012-2025 German Aerospace Center (DLR) and others.
5
# This program and the accompanying materials are made available under the
6
# terms of the Eclipse Public License 2.0 which is available at
7
# https://www.eclipse.org/legal/epl-2.0/
8
# This Source Code may also be made available under the following Secondary
9
# Licenses when the conditions for such availability set forth in the Eclipse
10
# Public License 2.0 are satisfied: GNU General Public License, version 2
11
# or later which is available at
12
# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
13
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
14
15
# @file plotXMLAttr.py
16
# @author Jakob Erdmann
17
# @date 2017-12-04
18
19
"""generate boxplot for an aribitrary xml attribute"""
20
21
from __future__ import absolute_import
22
from __future__ import print_function
23
import os
24
import sys
25
sys.path.append(os.path.join(os.path.dirname(sys.argv[0]), '..'))
26
from sumolib.output import parse # noqa
27
from sumolib.miscutils import Statistics, parseTime # noqa
28
from sumolib.options import ArgumentParser # noqa
29
30
31
def parse_args():
32
optParser = ArgumentParser()
33
optParser.add_argument("tag", help="XML tag containing the attribute to be plotted")
34
optParser.add_argument("attr", help="XML attribute to be plotted")
35
optParser.add_argument("xmlfiles", help="XML file(s)", nargs='*')
36
return optParser.parse_args()
37
38
39
def main(tag, attr, xmlfiles):
40
data = []
41
for xmlfile in xmlfiles:
42
stats = Statistics('%s %s' % (tag, attr))
43
for elem in parse(xmlfile, tag):
44
stats.add(parseTime(elem.getAttribute(attr)), elem.id)
45
print(stats)
46
data.append(stats.values)
47
try:
48
import matplotlib.pyplot as plt # noqa
49
plt.figure()
50
plt.xticks(range(len(xmlfiles)), xmlfiles)
51
plt.ylabel("%s %s" % (tag, attr))
52
plt.boxplot(data)
53
plt.show()
54
except ImportError:
55
print("Matplotlib not found, cannot generate plot.", file=sys.stderr)
56
57
58
if __name__ == "__main__":
59
options = parse_args()
60
main(options.tag, options.attr, options.xmlfiles)
61
62