bigframes.geopandas.GeoSeries.dtypes#

property GeoSeries.dtypes#

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 aren’t supported yet in BigQuery DataFrames.

Examples:

>>> df = bpd.DataFrame({'float': [1.0], 'int': [1], 'string': ['foo']})
>>> df.dtypes
float             Float64
int                 Int64
string    string[pyarrow]
dtype: object
Returns:

A pandas Series with the data type of each column.

Return type:

pandas.Series