示例#1
0
	def plot(self,inter= False):
		"""
		inter : bool
			 Interactive mode. If true, then the picture is redrawn in the exisiting figure.
		"""
		from plotters import plot_marginals
		plot_marginals(self._X.T,self._w,"Hybrid Using :"+self.model_name,self.t,labels=self.model.species,interactive=inter)
示例#2
0
文件: OFSP.py 项目: SysSynBio/PyME
	def plot(self,inter=False):
		"""
		inter : Boolean
			 Interactive mode. If true, then the picture is redrawn in the exisiting figure.
		"""
		from plotters import plot_marginals
		plot_marginals(self.domain_states.T,self.p,"OFSP Using :"+self.expander_name,self.t,labels=self.model.species,interactive=inter)
示例#3
0
文件: OFSP.py 项目: rkosarwal/isp
    def plot(self, inter=False):
        """
		inter : Boolean
			 Interactive mode. If true, then the picture is redrawn in the exisiting figure.
		"""
        from plotters import plot_marginals
        plot_marginals(self.domain_states.T,
                       self.p,
                       "OFSP Using :" + self.expander_name,
                       self.t,
                       labels=self.model.species,
                       interactive=inter)
示例#4
0
    def plot(self, inter=False):
        """
		inter : bool
			 Interactive mode. If true, then the picture is redrawn in the exisiting figure.
		"""
        from plotters import plot_marginals
        plot_marginals(self._X.T,
                       self._w,
                       "Hybrid Using :" + self.model_name,
                       self.t,
                       labels=self.model.species,
                       interactive=inter)