-
Updated
Apr 3, 2022 - Python
SciPy
SciPy (pronounced “Sigh Pie”) is a Python-based ecosystem of open source software for mathematics, science, and engineering.
Here are 1,529 public repositories matching this topic...
-
Updated
Oct 19, 2019
The description of rvalue in stats.probplot() is missing.
def probplot(x, sparams=(), dist='norm', fit=True, plot=None, rvalue=False):
...
Parameters
----------
x : array_like
Sample/response data from which `probplot` creates the plot.
sparams : tuple, optional
Distribution-specific shape parameters (shape parameters plus location
and scale)
-
Updated
Apr 1, 2022 - Python
Description
https://numpy.org/doc/stable/reference/generated/numpy.corrcoef.html
https://docs.cupy.dev/en/stable/reference/generated/cupy.corrcoef.html
Seems args are different
Additional Information
dtype argument added in NumPy version 1.20.
-
Updated
Jun 3, 2022 - Python
-
Updated
Jan 26, 2022 - Python
-
Updated
Sep 29, 2020 - Python
-
Updated
May 15, 2022 - Python
-
Updated
Nov 29, 2019 - Python
-
Updated
May 12, 2022 - HTML
-
Updated
Feb 23, 2022 - Jupyter Notebook
-
Updated
Oct 28, 2021 - Jupyter Notebook
Description
Since Verde v2.0.0 the grid method of every gridder in Verde will not take the spacing, shape or region arguments.
They will not create the desired grid, but will be able to take the coordinates of a predefined regular grid (see #326 for more details).
Currently the [verde.project_grid](https://www.fatiando.org/verde/latest/_modules/verde/projections.html#project_g
-
Updated
Mar 4, 2018 - Jupyter Notebook
-
Updated
Mar 28, 2017 - Python
-
Updated
Oct 7, 2021 - Python
-
Updated
Mar 17, 2020 - Python
-
Updated
Jun 15, 2021 - Python
-
Updated
May 5, 2018 - Jupyter Notebook
-
Updated
May 18, 2022 - Python
-
Updated
May 26, 2022 - Jupyter Notebook
-
Updated
May 17, 2022 - C
Created by Travis Oliphant, Pearu Peterson, Eric Jones
Latest release 20 days ago
- Repository
- scipy/scipy
- Website
- www.scipy.org
- Wikipedia
- Wikipedia
#9130 adds a
sort_resultsargument toassert_eq, which allows us to assert DataFrame equality without sorting them (by default,assert_eqsorts the input DataFrames before checking equality). It'll be nice to identify+update the tests that would benefit from it.A first step could be to run the dataframe tests with
check_index=Falseandsort_results=Falseas defaults.