larray.empty¶
-
larray.empty(axes, title='', dtype=<class 'float'>, order='C')[source]¶ Returns an array with the specified axes and uninitialized (arbitrary) data.
Parameters: axes : int, tuple of int, Axis or tuple/list/AxisCollection of Axis
Collection of axes or a shape.
title : str, optional
Title.
dtype : data-type, optional
Desired data-type for the array, e.g., numpy.int8. Default is numpy.float64.
order : {‘C’, ‘F’}, optional
Whether to store multidimensional data in C- (default) or Fortran-contiguous (row- or column-wise) order in memory.
Returns: LArray
Examples
>>> nat = Axis('nat=BE,FO') >>> sex = Axis('sex=M,F') >>> empty([nat, sex]) nat\sex M F BE 2.47311483356e-315 2.47498446195e-315 FO 0.0 6.07684618082e-31