Return the dtypes in the DataFrame.
This returns a Series with the data type of each column. The resultâs index is the original DataFrameâs columns. Columns with mixed types are stored with the object
dtype. See the User Guide for more.
The data type of each column.
Examples
>>> df = pd.DataFrame({'float': [1.0], ... 'int': [1], ... 'datetime': [pd.Timestamp('20180310')], ... 'string': ['foo']}) >>> df.dtypes float float64 int int64 datetime datetime64[ns] string object dtype: object
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4