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


Python QTable.pformat方法代码示例

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


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

示例1: test_possible_string_format_functions

# 需要导入模块: from astropy.table import QTable [as 别名]
# 或者: from astropy.table.QTable import pformat [as 别名]
def test_possible_string_format_functions():
    """
    The QuantityInfo info class for Quantity implements a
    possible_string_format_functions() method that overrides the
    standard pprint._possible_string_format_functions() function.
    Test this.
    """
    t = QTable([[1, 2] * u.m])
    t['col0'].info.format = '%.3f'
    assert t.pformat() == [' col0',
                           '  m  ',
                           '-----',
                           '1.000',
                           '2.000']

    t['col0'].info.format = 'hi {:.3f}'
    assert t.pformat() == ['  col0  ',
                           '   m    ',
                           '--------',
                           'hi 1.000',
                           'hi 2.000']

    t['col0'].info.format = '.4f'
    assert t.pformat() == [' col0 ',
                           '  m   ',
                           '------',
                           '1.0000',
                           '2.0000']
开发者ID:Cadair,项目名称:astropy,代码行数:30,代码来源:test_mixin.py

示例2: test_auto_format_func

# 需要导入模块: from astropy.table import QTable [as 别名]
# 或者: from astropy.table.QTable import pformat [as 别名]
def test_auto_format_func():
    """Test for #5802 (fix for #5800 where format_func key is not unique)"""
    t = Table([[1, 2] * u.m])
    t['col0'].format = '%f'
    t.pformat()  # Force caching of format function

    qt = QTable(t)
    qt.pformat()  # Generates exception prior to #5802
开发者ID:MaxNoe,项目名称:astropy,代码行数:10,代码来源:test_pprint.py

示例3: test_quantity_representation

# 需要导入模块: from astropy.table import QTable [as 别名]
# 或者: from astropy.table.QTable import pformat [as 别名]
def test_quantity_representation():
    """
    Test that table representation of quantities does not have unit
    """
    t = QTable([[1, 2] * u.m])
    assert t.pformat() == ['col0',
                           ' m  ',
                           '----',
                           ' 1.0',
                           ' 2.0']
开发者ID:Cadair,项目名称:astropy,代码行数:12,代码来源:test_mixin.py


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