ones(shape, dtype=None, order='C', *, like=None)
        
        Shape of the new array, e.g.,         (2, 3)
 or         2
.
The desired data-type for the array, e.g., numpy.int8
.  Default is numpy.float64
.
Whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory.
Reference object to allow the creation of arrays which are not NumPy arrays. If an array-like passed in as         like
 supports the         __array_function__
 protocol, the result will be defined by it. In this case, it ensures the creation of an array object compatible with that passed in via this argument.
Array of ones with the given shape, dtype, and order.
Return a new array of given shape and type, filled with ones.
empty
Return a new uninitialized array.
full
Return a new array of given shape filled with value.
ones_like
Return an array of ones with shape and type of input.
zeros
Return a new array setting values to zero.
>>> np.ones(5) array([1., 1., 1., 1., 1.])
>>> np.ones((5,), dtype=int) array([1, 1, 1, 1, 1])
>>> np.ones((2, 1)) array([[1.], [1.]])
>>> s = (2,2)See :
... np.ones(s) array([[1., 1.], [1., 1.]])
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.sparse.csgraph._flow.maximum_flowscipy.optimize._optimize.approx_fprimescipy.signal._spectral_py.check_NOLAscipy.fft._basic.hfftnscipy.spatial._geometric_slerp.geometric_slerpscipy.fft._basic.rfftnscipy.linalg._decomp_cholesky.cho_solve_bandedscipy.signal._signaltools.correlatescipy.fft._basic.ihfftnscipy.linalg._basic.matmul_toeplitzskimage.restoration.uft.uirfft2skimage.measure.fit.ransacskimage.restoration.uft.uirfftnskimage.restoration.uft.uifftnskimage.restoration.uft.urfftnskimage.restoration.uft.ufftnskimage.restoration.uft.image_quad_normskimage.restoration.deconvolution.wienerskimage.segmentation._watershed.watershedskimage.restoration.uft.ir2tfskimage.restoration.uft.ufft2skimage.morphology._util._offsets_to_raveled_neighborsskimage.transform.integral.integrateskimage.restoration.deconvolution.unsupervised_wienerskimage.restoration.deconvolution.richardson_lucyskimage.restoration.uft.urfft2skimage.restoration.uft.uifft2skimage.filters._unsharp_mask.unsharp_maskHover 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