当前位置: 首页>>代码示例>>Python>>正文


Python Axes.set_default_unit_to_locator_map方法代码示例

本文整理汇总了Python中axes.Axes.set_default_unit_to_locator_map方法的典型用法代码示例。如果您正苦于以下问题:Python Axes.set_default_unit_to_locator_map方法的具体用法?Python Axes.set_default_unit_to_locator_map怎么用?Python Axes.set_default_unit_to_locator_map使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在axes.Axes的用法示例。


在下文中一共展示了Axes.set_default_unit_to_locator_map方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: zip

# 需要导入模块: from axes import Axes [as 别名]
# 或者: from axes.Axes import set_default_unit_to_locator_map [as 别名]
    for unit_1, unit_2 in zip(units[:-1], units[1:]):
      if (unit_1 != unit_2):
        return NotImplemented
    return units[0]
  def multiplication_rule(self, units):
    non_null = [u for u in units if u]
    if (len(non_null) > 1):
      return NotImplemented
    return non_null[0]

  op_dict = {
    '__mul__':multiplication_rule,
    '__rmul__':multiplication_rule,
    '__add__':addition_rule,
    '__radd__':addition_rule,
    '__sub__':addition_rule,
    '__rsub__':addition_rule,
  }
 
  def __call__(self, operation, units):
    if (operation not in self.op_dict):
      return NotImplemented

    return self.op_dict[operation](self, units)

unit_resolver = UnitResolver()

Axes.set_default_unit_to_locator_map(lambda u:u.get_tick_locators())
Axes.set_default_unit_to_formatter_map(lambda u:u.get_tick_formatters())

开发者ID:,项目名称:,代码行数:31,代码来源:


注:本文中的axes.Axes.set_default_unit_to_locator_map方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。