pyvista.DataSet.get_data_range#
- DataSet.get_data_range( ) tuple[float, float] [source]#
Get the min and max of a named array.
- Parameters:
- arr_var
str
,np.ndarray
,optional
The name of the array to get the range. If
None
, the active scalars is used.- preference
str
, default: “cell” When scalars is specified, this is the preferred array type to search for in the dataset. Must be either
'point'
,'cell'
, or'field'
.
- arr_var
- Returns:
tuple
(min, max)
of the named array.