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


Python dtypes.IntervalDtype类代码示例

本文整理汇总了Python中pandas.core.dtypes.dtypes.IntervalDtype的典型用法代码示例。如果您正苦于以下问题:Python IntervalDtype类的具体用法?Python IntervalDtype怎么用?Python IntervalDtype使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了IntervalDtype类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_construction_from_string_errors

    def test_construction_from_string_errors(self, string):
        if isinstance(string, string_types):
            error, msg = ValueError, 'could not construct IntervalDtype'
        else:
            error, msg = TypeError, 'a string needs to be passed, got type'

        with tm.assert_raises_regex(error, msg):
            IntervalDtype.construct_from_string(string)
开发者ID:mficek,项目名称:pandas,代码行数:8,代码来源:test_dtypes.py

示例2: test_construction_from_string_error_subtype

    def test_construction_from_string_error_subtype(self, string):
        # this is an invalid subtype
        msg = ("Incorrectly formatted string passed to constructor. "
               r"Valid formats include Interval or Interval\[dtype\] "
               "where dtype is numeric, datetime, or timedelta")

        with pytest.raises(TypeError, match=msg):
            IntervalDtype.construct_from_string(string)
开发者ID:chrish42,项目名称:pandas,代码行数:8,代码来源:test_dtypes.py

示例3: test_caching

    def test_caching(self):
        IntervalDtype.reset_cache()
        dtype = IntervalDtype("int64")
        assert len(IntervalDtype._cache) == 1

        IntervalDtype("interval")
        assert len(IntervalDtype._cache) == 2

        IntervalDtype.reset_cache()
        tm.round_trip_pickle(dtype)
        assert len(IntervalDtype._cache) == 0
开发者ID:mficek,项目名称:pandas,代码行数:11,代码来源:test_dtypes.py

示例4: test_construction_from_string

 def test_construction_from_string(self):
     result = IntervalDtype('interval[int64]')
     assert is_dtype_equal(self.dtype, result)
     result = IntervalDtype.construct_from_string('interval[int64]')
     assert is_dtype_equal(self.dtype, result)
     with pytest.raises(TypeError):
         IntervalDtype.construct_from_string('foo')
     with pytest.raises(TypeError):
         IntervalDtype.construct_from_string('interval[foo]')
     with pytest.raises(TypeError):
         IntervalDtype.construct_from_string('foo[int64]')
开发者ID:cpcloud,项目名称:pandas,代码行数:11,代码来源:test_dtypes.py

示例5: test_construction_from_string

 def test_construction_from_string(self):
     result = IntervalDtype('interval[int64]')
     self.assertTrue(is_dtype_equal(self.dtype, result))
     result = IntervalDtype.construct_from_string('interval[int64]')
     self.assertTrue(is_dtype_equal(self.dtype, result))
     with tm.assertRaises(TypeError):
         IntervalDtype.construct_from_string('foo')
     with tm.assertRaises(TypeError):
         IntervalDtype.construct_from_string('interval[foo]')
     with tm.assertRaises(TypeError):
         IntervalDtype.construct_from_string('foo[int64]')
开发者ID:tsdlovell,项目名称:pandas,代码行数:11,代码来源:test_dtypes.py

示例6: test_is_dtype

    def test_is_dtype(self):
        assert IntervalDtype.is_dtype(self.dtype)
        assert IntervalDtype.is_dtype('interval')
        assert IntervalDtype.is_dtype(IntervalDtype('float64'))
        assert IntervalDtype.is_dtype(IntervalDtype('int64'))
        assert IntervalDtype.is_dtype(IntervalDtype(np.int64))

        assert not IntervalDtype.is_dtype('D')
        assert not IntervalDtype.is_dtype('3D')
        assert not IntervalDtype.is_dtype('U')
        assert not IntervalDtype.is_dtype('S')
        assert not IntervalDtype.is_dtype('foo')
        assert not IntervalDtype.is_dtype(np.object_)
        assert not IntervalDtype.is_dtype(np.int64)
        assert not IntervalDtype.is_dtype(np.float64)
开发者ID:mficek,项目名称:pandas,代码行数:15,代码来源:test_dtypes.py

示例7: test_construction_from_string

 def test_construction_from_string(self):
     result = IntervalDtype('interval[int64]')
     assert is_dtype_equal(self.dtype, result)
     result = IntervalDtype.construct_from_string('interval[int64]')
     assert is_dtype_equal(self.dtype, result)
开发者ID:mficek,项目名称:pandas,代码行数:5,代码来源:test_dtypes.py

示例8: test_construction_from_string_error_subtype

    def test_construction_from_string_error_subtype(self, string):
        # this is an invalid subtype
        msg = 'could not construct IntervalDtype'

        with tm.assert_raises_regex(TypeError, msg):
            IntervalDtype.construct_from_string(string)
开发者ID:bkandel,项目名称:pandas,代码行数:6,代码来源:test_dtypes.py

示例9: test_construction_from_string_errors

    def test_construction_from_string_errors(self, string):
        # these are invalid entirely
        msg = 'a string needs to be passed, got type'

        with tm.assert_raises_regex(TypeError, msg):
            IntervalDtype.construct_from_string(string)
开发者ID:bkandel,项目名称:pandas,代码行数:6,代码来源:test_dtypes.py

示例10: dtype

 def dtype(self):
     return IntervalDtype.construct_from_string(str(self.left.dtype))
开发者ID:qdxt,项目名称:python,代码行数:2,代码来源:interval.py

示例11: test_construction_from_string_error_subtype

    def test_construction_from_string_error_subtype(self, string):
        # this is an invalid subtype
        msg = 'could not construct IntervalDtype'

        with pytest.raises(TypeError, match=msg):
            IntervalDtype.construct_from_string(string)
开发者ID:changhiskhan,项目名称:pandas,代码行数:6,代码来源:test_dtypes.py

示例12: test_construction_from_string_errors

    def test_construction_from_string_errors(self, string):
        # these are invalid entirely
        msg = 'a string needs to be passed, got type'

        with pytest.raises(TypeError, match=msg):
            IntervalDtype.construct_from_string(string)
开发者ID:changhiskhan,项目名称:pandas,代码行数:6,代码来源:test_dtypes.py

示例13: test_is_dtype

    def test_is_dtype(self):
        self.assertTrue(IntervalDtype.is_dtype(self.dtype))
        self.assertTrue(IntervalDtype.is_dtype('interval'))
        self.assertTrue(IntervalDtype.is_dtype(IntervalDtype('float64')))
        self.assertTrue(IntervalDtype.is_dtype(IntervalDtype('int64')))
        self.assertTrue(IntervalDtype.is_dtype(IntervalDtype(np.int64)))

        self.assertFalse(IntervalDtype.is_dtype('D'))
        self.assertFalse(IntervalDtype.is_dtype('3D'))
        self.assertFalse(IntervalDtype.is_dtype('U'))
        self.assertFalse(IntervalDtype.is_dtype('S'))
        self.assertFalse(IntervalDtype.is_dtype('foo'))
        self.assertFalse(IntervalDtype.is_dtype(np.object_))
        self.assertFalse(IntervalDtype.is_dtype(np.int64))
        self.assertFalse(IntervalDtype.is_dtype(np.float64))
开发者ID:tsdlovell,项目名称:pandas,代码行数:15,代码来源:test_dtypes.py

示例14: dtype

 def dtype(self):
     """Return the dtype object of the underlying data"""
     return IntervalDtype.construct_from_string(str(self.left.dtype))
开发者ID:mficek,项目名称:pandas,代码行数:3,代码来源:interval.py


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