The Wayback Machine - https://web.archive.org/web/20210610092825/https://github.com/topics/scipy
Skip to content
#

SciPy

scipy logo

SciPy (pronounced “Sigh Pie”) is a Python-based ecosystem of open source software for mathematics, science, and engineering.

Here are 1,205 public repositories matching this topic...

Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.

  • Updated May 13, 2021
  • Python
twoertwein
twoertwein commented Jun 9, 2021

The dask.delayed decorator should have type annotations.

from dask import delayed

@delayed(pure=True)
def well_typed_function() -> int:
    return 1

mypy: Untyped decorator makes function "well_typed_function" untyped

Ideally, the type of delayed would be something like

from typing import TypeVar
from dask.delayed import Delayed

T = TypeVar("T")

delayed(o
verde
santisoler
santisoler commented May 11, 2021

Description of the desired feature

The spacing parameter of the rolling_window function controls the distance between the center of two adjacent windows.
Nevertheless, the docstring reads:

    spacing : float, tuple = (s_north, s_east), or None
        The window size in the South-North and West-East directions,
        respectively. A single value means that the size is equal 

Created by Travis Oliphant, Pearu Peterson, Eric Jones

Latest release about 2 months ago

Repository
scipy/scipy
Website
www.scipy.org
Wikipedia
Wikipedia

Related Topics

python scikit