Closed
Description
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
main
here
Location of the documentation
https://pandas.pydata.org/docs/user_guide/basics.html#dtypes
Documentation problem
In the dtypes section a list of integer types are given, but not floating point types. According to pandas.to_numeric()
under the downcast
argument, it appears float32
is the smallest floating point type, which implies float16
is not documented.
In addition, the integer types are listed with capitalization, but it appears that capitalization does not matter, which is not documented.
Suggested fix for documentation
- List supported floating point types.
- Mention
float16
not supported. (Could be implicitly solved by point 1.) - Mention entries are not case-sensitive.
- Link to NumPy types.
Resulting from #50213.