本文整理匯總了Python中pandas.core.nanops._ensure_numeric方法的典型用法代碼示例。如果您正苦於以下問題:Python nanops._ensure_numeric方法的具體用法?Python nanops._ensure_numeric怎麽用?Python nanops._ensure_numeric使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pandas.core.nanops
的用法示例。
在下文中一共展示了nanops._ensure_numeric方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_ndarray
# 需要導入模塊: from pandas.core import nanops [as 別名]
# 或者: from pandas.core.nanops import _ensure_numeric [as 別名]
def test_ndarray(self):
# Test numeric ndarray
values = np.array([1, 2, 3])
assert np.allclose(nanops._ensure_numeric(values), values)
# Test object ndarray
o_values = values.astype(object)
assert np.allclose(nanops._ensure_numeric(o_values), values)
# Test convertible string ndarray
s_values = np.array(['1', '2', '3'], dtype=object)
assert np.allclose(nanops._ensure_numeric(s_values), values)
# Test non-convertible string ndarray
s_values = np.array(['foo', 'bar', 'baz'], dtype=object)
pytest.raises(ValueError, lambda: nanops._ensure_numeric(s_values))
示例2: test_numeric_values
# 需要導入模塊: from pandas.core import nanops [as 別名]
# 或者: from pandas.core.nanops import _ensure_numeric [as 別名]
def test_numeric_values(self):
# Test integer
assert nanops._ensure_numeric(1) == 1
# Test float
assert nanops._ensure_numeric(1.1) == 1.1
# Test complex
assert nanops._ensure_numeric(1 + 2j) == 1 + 2j
示例3: test_convertable_values
# 需要導入模塊: from pandas.core import nanops [as 別名]
# 或者: from pandas.core.nanops import _ensure_numeric [as 別名]
def test_convertable_values(self):
assert np.allclose(nanops._ensure_numeric('1'), 1.0)
assert np.allclose(nanops._ensure_numeric('1.1'), 1.1)
assert np.allclose(nanops._ensure_numeric('1+1j'), 1 + 1j)
示例4: test_non_convertable_values
# 需要導入模塊: from pandas.core import nanops [as 別名]
# 或者: from pandas.core.nanops import _ensure_numeric [as 別名]
def test_non_convertable_values(self):
pytest.raises(TypeError, lambda: nanops._ensure_numeric('foo'))
pytest.raises(TypeError, lambda: nanops._ensure_numeric({}))
pytest.raises(TypeError, lambda: nanops._ensure_numeric([]))