MCPcopy Create free account
hub / github.com/dask/dask / ravel

Method ravel

dask/array/core.py:2233–2244  ·  view source on GitHub ↗

Return a flattened array. Refer to :func:`dask.array.ravel` for full documentation. See Also -------- dask.array.ravel : equivalent function

(self)

Source from the content-addressed store, hash-verified

2231 return transpose(self, axes=axes)
2232
2233 def ravel(self):
2234 """Return a flattened array.
2235
2236 Refer to :func:`dask.array.ravel` for full documentation.
2237
2238 See Also
2239 --------
2240 dask.array.ravel : equivalent function
2241 """
2242 from dask.array.routines import ravel
2243
2244 return ravel(self)
2245
2246 flatten = ravel
2247

Callers 15

normalize_arrayFunction · 0.45
_monotonic_combineFunction · 0.45
_monotonic_aggregateFunction · 0.45
sanitize_indexFunction · 0.45
_arg_combineFunction · 0.45
arg_chunkFunction · 0.45
vdotFunction · 0.45
unique_no_structured_arrFunction · 0.45
uniqueFunction · 0.45
_isin_kernelFunction · 0.45
union1dFunction · 0.45

Calls 1

ravelFunction · 0.90

Tested by 4

test_ravelFunction · 0.36
test_ravel_1D_no_opFunction · 0.36