示例#1
0
def unsupported_property_rolling(property_name, deprecated=False, reason=""):
    return _unsupported_property(
        class_name="pandas.core.window.Rolling",
        property_name=property_name,
        deprecated=deprecated,
        reason=reason,
    )
示例#2
0
def unsupported_property(property_name, deprecated=False, reason=""):
    return _unsupported_property(
        class_name="pd.groupby.GroupBy",
        property_name=property_name,
        deprecated=deprecated,
        reason=reason,
    )
示例#3
0
def unsupported_property(property_name, deprecated=False, reason=""):
    return _unsupported_property(class_name='pd.Index',
                                 property_name=property_name,
                                 deprecated=deprecated,
                                 reason=reason)
示例#4
0
def unsupported_property(property_name, deprecated=False, reason=""):
    return _unsupported_property(class_name="pd.Series",
                                 property_name=property_name,
                                 deprecated=deprecated,
                                 reason=reason)
示例#5
0
def unsupported_property(property_name, deprecated=False):
    return _unsupported_property(class_name='pd.Index',
                                 property_name=property_name,
                                 deprecated=deprecated)
示例#6
0
文件: series.py 项目: wingszb/koalas
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.Series',
                                 property_name=property_name)
示例#7
0
文件: frame.py 项目: bakea/koalas
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.DataFrame',
                                 property_name=property_name)
示例#8
0
def unsupported_property(property_name, deprecated=False):
    return _unsupported_property(class_name='pd.groupby.GroupBy',
                                 property_name=property_name,
                                 deprecated=deprecated)
示例#9
0
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.Series', property_name=property_name)
示例#10
0
def unsupported_property_expanding(property_name, deprecated=False, reason=""):
    return _unsupported_property(
        class_name='pandas.core.window.Expanding', property_name=property_name,
        deprecated=deprecated, reason=reason)
示例#11
0
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.groupby.GroupBy',
                                 property_name=property_name)
示例#12
0
文件: frame.py 项目: zhang01GA/koalas
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.DataFrame', property_name=property_name)
示例#13
0
def unsupported_property(property_name):
    return _unsupported_property(class_name='pd.groupby.GroupBy', property_name=property_name)