Skip to content

DOC: Improved the docstring of pandas.DataFrame.values #20065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Mar 10, 2018
Prev Previous commit
Next Next commit
DOC: Improved the docstring of pandas.DataFrame.values
included function reference
  • Loading branch information
math-and-data authored Mar 9, 2018
commit 3af7b886d89d88daafef36de106466a4cc12616e
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4271,7 +4271,7 @@ def values(self):

e.g. If the dtypes are float16 and float32, dtype will be upcast to
float32. If dtypes are int32 and uint8, dtype will be upcast to
int32. By numpy.find_common_type convention, mixing int64 and uint64
int32. By :func:`numpy.find_common_type` convention, mixing int64 and uint64
will result in a flot64 dtype.
"""
self._consolidate_inplace()
Expand Down