示例#1
0
 def calculate(cls):
     cls.g = g = GroupSorted(cls.gind)  # pylint: disable-msg=W0201
     cls.alla = [
         (lag, sw.lagged_groups(cls.x, lag,
                                g.groupidx))  # pylint: disable-msg=W0201
         for lag in range(5)
     ]
示例#2
0
 def calculate(self):
     self.g = g = GroupSorted(self.gind)  # pylint: disable-msg=W0201
     self.alla = [
         (lag, sw.lagged_groups(self.x, lag,
                                g.groupidx))  # pylint: disable-msg=W0201
         for lag in range(5)
     ]
示例#3
0
 def calculate(cls):
     cls.g = g = GroupSorted(cls.gind)  # pylint: disable-msg=W0201
     cls.alla = [(lag, sw.lagged_groups(cls.x, lag, g.groupidx))  # pylint: disable-msg=W0201
                      for lag in range(5)]
示例#4
0
 def calculate(self):
     self.g = g = GroupSorted(self.gind)  # pylint: disable-msg=W0201
     self.alla = [(lag, sw.lagged_groups(self.x, lag, g.groupidx))  # pylint: disable-msg=W0201
                      for lag in range(5)]
示例#5
0
 def calculate(self):
     self.g = g = GroupSorted(self.gind)
     self.alla = [(lag, sw.lagged_groups(self.x, lag, g.groupidx))
                  for lag in range(5)]
示例#6
0
 def calculate(self):
     self.g = g = GroupSorted(self.gind)
     self.alla = [(lag, sw.lagged_groups(self.x, lag, g.groupidx))
                      for lag in range(5)]