コード例 #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
ファイル: json.py プロジェクト: mcooney9790/QueryPractice
 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
ファイル: json.py プロジェクト: mcooney9790/QueryPractice
 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)