예제 #1
0
 def _box_func(self):
     return lambda x: Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #2
0
파일: period.py 프로젝트: dsm054/pandas
 def _box_func(self):
     return lambda x: Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #3
0
 def func(x):
     if isinstance(x, Period) or x is NaT:
         return x
     else:
         return Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #4
0
파일: period.py 프로젝트: Aathi410/Pro123
 def _box_func(self, x) -> Period | NaTType:
     return Period._from_ordinal(ordinal=x, freq=self.freq)
예제 #5
0
 def _box_func(self, x) -> Union[Period, NaTType]:
     return Period._from_ordinal(ordinal=x, freq=self.freq)