Masked values of True exclude the corresponding element from any computation.
Construction
x = MaskedArray(data, mask=nomask, dtype=None, copy=False, subok=True,
ndmin=0, fill_value=None, keep_mask=True, hard_mask=None,
shrink=True, order=None)
Input data.
Mask. Must be convertible to an array of booleans with the same shape as data. True indicates a masked (i.e. invalid) data.
Whether to copy the input data (True), or to use a reference instead. Default is False.
Whether to return a subclass of MaskedArray if possible (True) or a plain MaskedArray. Default is True.
Minimum number of dimensions. Default is 0.
Value used to fill in the masked values when necessary. If None, a default based on the data-type is used.
Whether to use a hard mask or not. With a hard mask, masked values cannot be unmasked. Default is False.
Whether to force compression of an empty mask. Default is True.
Specify the order of the array. If order is 'C', then the array will be in C-contiguous order (last-index varies the fastest). If order is 'F', then the returned array will be in Fortran-contiguous order (first-index varies the fastest). If order is 'A' (default), then the returned array may be in any order (either C-, Fortran-contiguous, or even discontiguous), unless a copy is required, in which case it will be C-contiguous.
An array class with possibly masked values.
data = np.arange(6).reshape((2, 3))
np.ma.MaskedArray(data, mask=[[False, True, False],
[False, False, True]])
np.ma.MaskedArray(data, mask=False)
np.ma.MaskedArray(data, mask=True)
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