Container for tag statistics.
                  
                    Source code in src/robot/model/tagstatistics.py
                    |  | def __init__(self, combined_stats):
    #: Dictionary, where key is the name of the tag as a string and value
    #: is an instance of :class:`~robot.model.stats.TagStat`.
    self.tags = NormalizedDict(ignore='_')
    #: List of :class:`~robot.model.stats.CombinedTagStat` objects.
    self.combined = combined_stats
 |