arange(*args, **kwargs)
The values are half-open [start, stop), so including start and excluding stop. This is basically the same as python's range function but for dask arrays.
When using a non-integer step, such as 0.1, the results will often not be consistent. It is better to use linspace for these cases.
The starting value of the sequence. The default is 0.
The end of the interval, this value is excluded from the interval.
The spacing between the values. The default is 1 when not specified. The last value of the sequence.
The number of samples on each block. Note that the last block will have fewer samples if len(array) % chunks != 0
.
Output dtype. Omit to infer it from start, stop, step
Return evenly spaced values from start
to :None:None:`stop`
with step size :None:None:`step`
.
The following pages refer to to this document either explicitly or contain code examples using this.
dask.array.core.map_blocks
dask.array.creation.linspace
dask.array.overlap.map_overlap
dask.base.optimize
dask.base.compute
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them