pub fn create_random_array(
field: &Field,
size: usize,
null_density: f32,
true_density: f32,
) -> Result<ArrayRef>
Expand description
Create a random ArrayRef from a DataType with a length, null density and true density (for BooleanArray).
ยงArguments
field
- The field containing the data type for which to create a random arraysize
- The number of elements in the generated arraynull_density
- The approximate fraction of null values in the resulting array (0.0 to 1.0)true_density
- The approximate fraction of true values in boolean arrays (0.0 to 1.0)