Ejemplo n.º 1
0
 def plotsim(self, steps=1000):
     """
     Plot a simulation from the VAR(p) process for the desired number of
     steps
     """
     Y = util.varsim(self.coefs, self.intercept, self.sigma_u, steps=steps)
     plotting.plot_mts(Y)
Ejemplo n.º 2
0
 def plot(self):
     """Plot input time series
     """
     plotting.plot_mts(self.y, names=self.names, index=self.dates)