pandas 0.23 - pandas.api.types.is_interval_dtype()
pandas.api.types.is_interval_dtype

pandas.api.types.is_interval_dtype
-
pandas.api.types.is_interval_dtype(arr_or_dtype)
[source] -
जांचें कि क्या सरणी-जैसा या dtype इंटरवल dtype का है।
पैरामीटर: arr_or_dtype : array-like
चेक करने के लिए सरणी जैसा या dtype।
यह दिखाता है: बूलियन : सरणी-जैसा या dtype है या नहीं
इंटरवल dtype का।
उदाहरण
>>> is_interval_dtype(object) False >>> is_interval_dtype(IntervalDtype()) True >>> is_interval_dtype([1, 2, 3]) False >>> >>> interval = pd.Interval(1, 2, closed="right") >>> is_interval_dtype(interval) False >>> is_interval_dtype(pd.IntervalIndex([interval])) True