本文整理匯總了Python中pandas.core.common._any_none方法的典型用法代碼示例。如果您正苦於以下問題:Python common._any_none方法的具體用法?Python common._any_none怎麽用?Python common._any_none使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pandas.core.common
的用法示例。
在下文中一共展示了common._any_none方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_any_none
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import _any_none [as 別名]
def test_any_none():
assert (com._any_none(1, 2, 3, None))
assert (not com._any_none(1, 2, 3, 4))
示例2: test_constructor_errors_tz
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import _any_none [as 別名]
def test_constructor_errors_tz(self, tz_left, tz_right):
# GH 18538
left = Timestamp('2017-01-01', tz=tz_left)
right = Timestamp('2017-01-02', tz=tz_right)
error = TypeError if com._any_none(tz_left, tz_right) else ValueError
with pytest.raises(error):
Interval(left, right)
示例3: _is_type_compatible
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import _any_none [as 別名]
def _is_type_compatible(a, b):
"""helper for interval_range to check type compat of start/end/freq"""
is_ts_compat = lambda x: isinstance(x, (Timestamp, DateOffset))
is_td_compat = lambda x: isinstance(x, (Timedelta, DateOffset))
return ((is_number(a) and is_number(b)) or
(is_ts_compat(a) and is_ts_compat(b)) or
(is_td_compat(a) and is_td_compat(b)) or
com._any_none(a, b))
示例4: _get_values_tuple
# 需要導入模塊: from pandas.core import common [as 別名]
# 或者: from pandas.core.common import _any_none [as 別名]
def _get_values_tuple(self, key):
# mpl hackaround
if com._any_none(*key):
return self._get_values(key)
if not isinstance(self.index, MultiIndex):
raise ValueError('Can only tuple-index with a MultiIndex')
# If key is contained, would have returned by now
indexer, new_index = self.index.get_loc_level(key)
return self._constructor(self._values[indexer],
index=new_index).__finalize__(self)