Class Float64Dtype (1.22.0)

Float64Dtype()

An ExtensionDtype for float64 data.

This dtype uses pd.NA as missing value indicator.

For Float32Dtype:

ser = pd.Series([2.25, pd.NA], dtype=pd.Float32Dtype()) ser.dtype Float32Dtype()

For Float64Dtype:

ser = pd.Series([2.25, pd.NA], dtype=pd.Float64Dtype()) ser.dtype Float64Dtype()