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


Python parser.OptsSpec类代码示例

本文整理汇总了Python中holoviews.util.parser.OptsSpec的典型用法代码示例。如果您正苦于以下问题:Python OptsSpec类的具体用法?Python OptsSpec怎么用?Python OptsSpec使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: test_style_opts_intermediate_explicit

 def test_style_opts_intermediate_explicit(self):
     line = "Layout style(string='foo' test=3, b=True )"
     expected= {'Layout':{
                 'style': Options(string='foo',
                                  test=3,
                                  b=True)}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:7,代码来源:testparsers.py

示例2: test_plot_opts_with_space

 def test_plot_opts_with_space(self):
     "Space in the tuple, see issue #77"
     line = "Layout [fig_inches=(3, 3) title_format='foo bar']"
     expected= {'Layout':
                {'plot':
                 Options(title_format='foo bar', fig_inches=(3, 3))}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:7,代码来源:testparsers.py

示例3: test_combined_1

 def test_combined_1(self):
     line = "Layout plot[fig_inches=(3,3) foo='bar baz'] Layout (string='foo')"
     expected= {'Layout':
                {'plot':
                 Options(foo='bar baz', fig_inches=(3, 3)),
                 'style': Options(string='foo')}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:7,代码来源:testparsers.py

示例4: test_style_opts_advanced

 def test_style_opts_advanced(self):
     line = "Layout (string='foo' test=3, b=True color=Cycle(values=[1,2]))"
     expected= {'Layout':{
                 'style': Options(string='foo',
                                  test=3,
                                  b=True,
                                  color=Cycle(values=[1,2]))}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:8,代码来源:testparsers.py

示例5: test_norm_opts_multiple_paths

 def test_norm_opts_multiple_paths(self):
     line = "Image Curve {+axiswise +framewise}"
     expected = {'Image':
                 {'norm':
                  Options(axiswise=True, framewise=True)},
                 'Curve':
                 {'norm':
                  Options(axiswise=True, framewise=True)}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:9,代码来源:testparsers.py

示例6: test_combined_two_types_2

 def test_combined_two_types_2(self):
     line = "Layout plot[fig_inches=(3, 3)] Image (string='foo') [foo='bar baz']"
     expected= {'Layout':
                {'plot':
                 Options(fig_inches=(3, 3))},
                'Image': {
                    'style': Options(string='foo'),
                    'plot': Options(foo='bar baz')}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:9,代码来源:testparsers.py

示例7: test_plot_opts_multiple_paths

 def test_plot_opts_multiple_paths(self):
     line = "Image Curve [fig_inches=(3, 3) title_format='foo bar']"
     expected = {'Image':
                 {'plot':
                  Options(title_format='foo bar', fig_inches=(3, 3))},
                 'Curve':
                 {'plot':
                  Options(title_format='foo bar', fig_inches=(3, 3))}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:9,代码来源:testparsers.py

示例8: test_style_opts_multiple_paths

 def test_style_opts_multiple_paths(self):
     line = "Image Curve (color='beautiful')"
     expected = {'Image':
                 {'style':
                  Options(color='beautiful')},
                 'Curve':
                 {'style':
                  Options(color='beautiful')}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:9,代码来源:testparsers.py

示例9: test_combined_multiple_paths_merge

 def test_combined_multiple_paths_merge(self):
     line = "Image Curve [fig_inches=(3, 3)] (c='b') Image (s=3)"
     expected = {'Image':
                 {'plot':
                  Options(fig_inches=(3, 3)),
                  'style':
                  Options(c='b', s=3)},
                 'Curve':
                 {'plot':
                  Options(fig_inches=(3, 3)),
                 'style':
                 Options(c='b')}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:13,代码来源:testparsers.py

示例10: test_plot_opts_multiple_paths_2

 def test_plot_opts_multiple_paths_2(self):
     line = "Image Curve Layout Overlay[fig_inches=(3, 3) title='foo bar']"
     expected = {'Image':
                 {'plot':
                  Options(title='foo bar', fig_inches=(3, 3))},
                 'Curve':
                 {'plot':
                  Options(title='foo bar', fig_inches=(3, 3))},
                 'Layout':
                 {'plot':
                  Options(title='foo bar', fig_inches=(3, 3))},
                 'Overlay':
                 {'plot':
                  Options(title='foo bar', fig_inches=(3, 3))}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:basnijholt,项目名称:holoviews,代码行数:15,代码来源:testparsers.py

示例11: test_style_opts_cycle_function

 def test_style_opts_cycle_function(self):
     # Explicitly compare because list of arrays do not compare correctly
     import numpy as np
     np.random.seed(42)
     line = "Curve (color=Cycle(values=list(np.random.rand(3,3))))"
     options = OptsSpec.parse(line, {'np': np, 'Cycle': Cycle})
     self.assertTrue('Curve' in options)
     self.assertTrue('style' in options['Curve'])
     self.assertTrue('color' in options['Curve']['style'].kwargs)
     self.assertTrue(isinstance(options['Curve']['style'].kwargs['color'], Cycle))
     values = np.array([[ 0.37454012,  0.95071431,  0.73199394],
                        [ 0.59865848,  0.15601864,  0.15599452],
                        [ 0.05808361,  0.86617615,  0.60111501]])
     self.assertEqual(np.array(options['Curve']['style'].kwargs['color'].values),
                      values)
开发者ID:mforbes,项目名称:holoviews,代码行数:15,代码来源:testparsers.py

示例12: test_combined_multiple_paths

 def test_combined_multiple_paths(self):
     line = "Image Curve {+framewise} [fig_inches=(3, 3) title_format='foo bar'] (c='b') Layout [string='foo'] Overlay"
     expected = {'Image':
                 {'norm':
                  Options(framewise=True, axiswise=False),
                  'plot':
                  Options(title_format='foo bar', fig_inches=(3, 3)),
                  'style':
                  Options(c='b')},
                 'Curve':
                 {'norm':
                  Options(framewise=True, axiswise=False),
                  'plot':
                  Options(title_format='foo bar', fig_inches=(3, 3)),
                  'style':
                  Options(c='b')},
                 'Layout':
                 {'plot':
                  Options(string='foo')},
                 'Overlay':
                 {}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:22,代码来源:testparsers.py

示例13: test_plot_opts_nested_brackets

 def test_plot_opts_nested_brackets(self):
     line = "Curve [title_format=', '.join(('A', 'B'))]"
     expected = {'Curve': {'plot': Options(title_format='A, B')}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:4,代码来源:testparsers.py

示例14: test_plot_opts_dict_without_space

 def test_plot_opts_dict_without_space(self):
     line = "Curve [fontsize=dict(xlabel=10,title=20)]"
     expected = {'Curve': {'plot': Options(fontsize={'xlabel': 10, 'title': 20})}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:4,代码来源:testparsers.py

示例15: test_plot_opts_with_space_explicit

 def test_plot_opts_with_space_explicit(self):
     line = "Layout plot[fig_inches=(3, 3) title_format='foo bar']"
     expected= {'Layout':
                {'plot':
                 Options(title_format='foo bar', fig_inches=(3, 3))}}
     self.assertEqual(OptsSpec.parse(line), expected)
开发者ID:mforbes,项目名称:holoviews,代码行数:6,代码来源:testparsers.py


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