예제 #1
0
 def _box_func(self):
     return lambda x: Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #2
0
파일: period.py 프로젝트: DGrady/pandas
 def _box_func(self):
     return lambda x: Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #3
0
파일: period.py 프로젝트: DT021/wau
 def _get_object_array(self):
     freq = self.freq
     return np.array(
         [Period._from_ordinal(ordinal=x, freq=freq) for x in self.values],
         copy=False)
예제 #4
0
파일: period.py 프로젝트: Arthurkorn/pandas
 def _get_object_array(self):
     freq = self.freq
     return np.array([ Period._from_ordinal(ordinal=x, freq=freq) for x in self.values], copy=False)