예제 #1
0
파일: base.py 프로젝트: sjtu2008/pandas
 def _update_inplace(self, result, **kwargs):
     raise AbstractMethodError(self)
예제 #2
0
파일: base.py 프로젝트: sjtu2008/pandas
 def aggregate(self, func, *args, **kwargs):
     raise AbstractMethodError(self)
예제 #3
0
 def _sub_datelike(self, other):
     raise AbstractMethodError(self)
예제 #4
0
파일: common.py 프로젝트: yaduart/pandas
 def __next__(self):
     raise AbstractMethodError(self)
예제 #5
0
 def _format_axes(self):
     raise AbstractMethodError(self)
예제 #6
0
 def _format_footer(self):
     raise AbstractMethodError(self)
예제 #7
0
파일: base.py 프로젝트: roycoding/pandas
 def _formatter_func(self):
     raise AbstractMethodError(self)
예제 #8
0
 def aggregate(self, func, *args, **kwargs):
     # type: (SelectionFunction, *Any, **Any) -> Any
     raise AbstractMethodError(self)
예제 #9
0
파일: base.py 프로젝트: xiaoshihou/pandas
 def _make_accessor(cls, data):
     raise AbstractMethodError("_make_accessor should be implemented"
                               "by subclass and return an instance"
                               "of `cls`.")
예제 #10
0
 def float_precision_choices(self):
     raise AbstractMethodError(self)
예제 #11
0
파일: parquet.py 프로젝트: yukizo3tm/pandas
 def read(self, path, columns=None, **kwargs):
     raise AbstractMethodError(self)
예제 #12
0
파일: parquet.py 프로젝트: yukizo3tm/pandas
 def write(self, df, path, compression, **kwargs):
     raise AbstractMethodError(self)
예제 #13
0
 def __unicode__(self):
     # type: () -> Text
     raise AbstractMethodError(self)
예제 #14
0
파일: base.py 프로젝트: sjtu2008/pandas
 def __unicode__(self):
     raise AbstractMethodError(self)
예제 #15
0
 def _try_convert_dates(self):
     raise AbstractMethodError(self)
예제 #16
0
 def _box_func(self):
     """
     box function to get object from internal representation
     """
     raise AbstractMethodError(self)
예제 #17
0
 def _update_inplace(self, result, **kwargs):
     # type: (Any, **Any) -> Any
     raise AbstractMethodError(self)