本文整理汇总了Python中matplotlib.testing.determinism._determinism_check函数的典型用法代码示例。如果您正苦于以下问题:Python _determinism_check函数的具体用法?Python _determinism_check怎么用?Python _determinism_check使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了_determinism_check函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_determinism_all
def test_determinism_all():
"""Test for reproducible PDF output"""
_determinism_check(format="pdf")
示例2: test_determinism_markers
def test_determinism_markers():
"""Test for reproducible PDF output: figure with different markers"""
_determinism_check('m', format="pdf")
示例3: test_determinism_hatches
def test_determinism_hatches():
"""Test for reproducible PDF output: figure with different hatches"""
_determinism_check('h', format="pdf")
示例4: test_determinism_plain
def test_determinism_plain():
"""Test for reproducible PDF output: simple figure"""
_determinism_check('', format="pdf")
示例5: test_determinism_all_tex
def test_determinism_all_tex():
"""Test for reproducible PS/tex output"""
_determinism_check(format="ps", usetex=True)
示例6: test_determinism_images
def test_determinism_images():
"""Test for reproducible PDF output: figure with different images"""
_determinism_check("i", format="pdf")