8000 ENH: add dtype option to numpy.lib.function_base.cov and corrcoef by lschwetlick · Pull Request #17456 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: add dtype option to numpy.lib.function_base.cov and corrcoef #17456

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 15 commits into from
Oct 9, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

8000
Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
documentation edit
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
  • Loading branch information
lschwetlick and eric-wieser authored Oct 5, 2020
commit 8e8af6088d1ec7b4a4b18b9500e9d35eab2222a7
2 changes: 1 addition & 1 deletion numpy/lib/function_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2326,7 +2326,7 @@ def cov(m, y=None, rowvar=True, bias=False, ddof=None, fweights=None,

.. versionadded:: 1.10
dtype : data-type, optional
Data-type of the result. By default, the return data-type is np.float64.
Data-type of the result. By default, the return data-type is `numpy.float64`.

.. versionadded:: 1.20.0

Expand Down
0