本文整理汇总了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)