本文整理汇总了Python中pandas.compat.isidentifier方法的典型用法代码示例。如果您正苦于以下问题:Python compat.isidentifier方法的具体用法?Python compat.isidentifier怎么用?Python compat.isidentifier使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pandas.compat
的用法示例。
在下文中一共展示了compat.isidentifier方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_index_tab_completion
# 需要导入模块: from pandas import compat [as 别名]
# 或者: from pandas.compat import isidentifier [as 别名]
def test_index_tab_completion(self, index):
# dir contains string-like values of the Index.
s = pd.Series(index=index)
dir_s = dir(s)
for i, x in enumerate(s.index.unique(level=0)):
if i < 100:
assert (not isinstance(x, string_types) or
not isidentifier(x) or x in dir_s)
else:
assert x not in dir_s
示例2: _local_dir
# 需要导入模块: from pandas import compat [as 别名]
# 或者: from pandas.compat import isidentifier [as 别名]
def _local_dir(self):
""" add the string-like attributes from the info_axis """
return [c for c in self._info_axis
if isinstance(c, string_types) and isidentifier(c)]