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


Python ParamOverrides.plot_type方法代码示例

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


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

示例1: __call__

# 需要导入模块: from param.parameterized import ParamOverrides [as 别名]
# 或者: from param.parameterized.ParamOverrides import plot_type [as 别名]
    def __call__(self,**params):
        p=ParamOverrides(self,params)
        sheet = p.sheet
        for coordinate in p.coords:
            i_value,j_value=sheet.sheet2matrixidx(coordinate[0],coordinate[1])

            pylab.figure(figsize=(7,7))
            isint=pylab.isinteractive()
            pylab.ioff()

            pylab.ylabel('Response',fontsize='large')
            pylab.xlabel('%s (%s)' % (p.x_axis.capitalize(),p.unit),fontsize='large')
            pylab.title('Sheet %s, coordinate(x,y)=(%0.3f,%0.3f) at time %s' %
                        (sheet.name,coordinate[0],coordinate[1],topo.sim.timestr()))
            p.title='%s: %s Tuning Curve' % (topo.sim.name,p.x_axis.capitalize())

            self.first_curve=True
            for curve_label in sorted(sheet.curve_dict[p.x_axis].keys()):
                x_values,y_values,ticks=self._curve_values(i_value,j_value,sheet.curve_dict[p.x_axis][curve_label])

                x_tick_values,ticks = self._reduce_ticks(ticks)
                labels = [self._format_x_tick_label(x) for x in ticks]
                pylab.xticks(x_tick_values, labels,fontsize='large')
                pylab.yticks(fontsize='large')
                p.plot_type(x_values, y_values, label=curve_label,lw=3.0)
                self.first_curve=False

            if isint: pylab.ion()
            if p.legend: pylab.legend(loc=2)
            self._generate_figure(p)
开发者ID:KeithRobertson,项目名称:topographica,代码行数:32,代码来源:pylabplot.py

示例2: __call__

# 需要导入模块: from param.parameterized import ParamOverrides [as 别名]
# 或者: from param.parameterized.ParamOverrides import plot_type [as 别名]
 def __call__(self,mat,aspect=None,colorbar=True,**params):
     p=ParamOverrides(self,params)
     
     p.plot_type()
     pylab.figure(figsize=(5,5))
     pylab.imshow(mat,interpolation='nearest',aspect=aspect)
     if colorbar and (mat.min()!= mat.max()): pylab.colorbar()
     self._generate_figure(p)
开发者ID:jesuscript,项目名称:TopographicaSVN,代码行数:10,代码来源:pylabplot.py


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