本文整理匯總了Python中pandas.core.common.AbstractMethodError方法的典型用法代碼示例。如果您正苦於以下問題:Python common.AbstractMethodError方法的具體用法?Python common.AbstractMethodError怎麽用?Python common.AbstractMethodError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pandas.core.common
的用法示例。
在下文中一共展示了common.AbstractMethodError方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _format_axes
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _format_axes(self):
raise AbstractMethodError(self)
示例2: _try_convert_types
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _try_convert_types(self):
raise AbstractMethodError(self)
示例3: _try_convert_dates
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _try_convert_dates(self):
raise AbstractMethodError(self)
示例4: _make_plot
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _make_plot(self):
raise com.AbstractMethodError(self)
示例5: _apply
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _apply(self, n, other):
"""Handle specific apply logic for child classes"""
raise com.AbstractMethodError(self)
示例6: _get_roll
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _get_roll(self, i, before_day_of_month, after_day_of_month):
"""Return an array with the correct n for each date in i.
The roll array is based on the fact that i gets rolled back to
the first day of the month.
"""
raise com.AbstractMethodError(self)
示例7: _apply_index_days
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _apply_index_days(self, i, roll):
"""Apply the correct day for each date in i"""
raise com.AbstractMethodError(self)
示例8: _series_name
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _series_name(self):
raise com.AbstractMethodError(self)
示例9: _box_func
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _box_func(self):
"""
box function to get object from internal representation
"""
raise com.AbstractMethodError(self)
示例10: _formatter_func
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _formatter_func(self):
raise com.AbstractMethodError(self)
示例11: _sub_datelike
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _sub_datelike(self, other):
raise com.AbstractMethodError(self)
示例12: _add_offset
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _add_offset(self, offset):
raise com.AbstractMethodError(self)
示例13: _evaluate_compare
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _evaluate_compare(self, other, op):
raise com.AbstractMethodError(self)
示例14: _wrap_applied_output
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _wrap_applied_output(self, *args, **kwargs):
raise com.AbstractMethodError(self)
示例15: _wrap_aggregated_output
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import AbstractMethodError [as 別名]
def _wrap_aggregated_output(self, output, names=None):
raise com.AbstractMethodError(self)