当前位置: 首页>>代码示例>>Python>>正文


Python common.AbstractMethodError方法代码示例

本文整理汇总了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) 
开发者ID:quantopian,项目名称:qgrid,代码行数:4,代码来源:json.py

示例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) 
开发者ID:quantopian,项目名称:qgrid,代码行数:4,代码来源:json.py

示例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) 
开发者ID:quantopian,项目名称:qgrid,代码行数:4,代码来源:json.py

示例4: _make_plot

# 需要导入模块: from pandas.core import common [as 别名]
# 或者: from pandas.core.common import AbstractMethodError [as 别名]
def _make_plot(self):
        raise com.AbstractMethodError(self) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:_core.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:5,代码来源:offsets.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:9,代码来源:offsets.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:5,代码来源:offsets.py

示例8: _series_name

# 需要导入模块: from pandas.core import common [as 别名]
# 或者: from pandas.core.common import AbstractMethodError [as 别名]
def _series_name(self):
        raise com.AbstractMethodError(self) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:test_resample.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:7,代码来源:datetimelike.py

示例10: _formatter_func

# 需要导入模块: from pandas.core import common [as 别名]
# 或者: from pandas.core.common import AbstractMethodError [as 别名]
def _formatter_func(self):
        raise com.AbstractMethodError(self) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:datetimelike.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:datetimelike.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:datetimelike.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:base.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:groupby.py

示例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) 
开发者ID:birforce,项目名称:vnpy_crypto,代码行数:4,代码来源:groupby.py


注:本文中的pandas.core.common.AbstractMethodError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。