Skip to content

column_operations

column_max(field, start_index, end_index)

Find the maximum value for a full or slice of a column.

Parameters:

Name Type Description Default
field

data to be analyzed

required
start_index

"bottom" index of slice, must be less than end_index

required
end_index

"top" index of slice, must be greater than start_index

required

Returns: (max value, index of max value)

column_max_ddim(field, ddim, start_index, end_index)

Find the maximum value for a full or slice of a column.

Parameters:

Name Type Description Default
field

data to be analyzed

required
start_index

"bottom" index of slice, must be less than end_index

required
end_index

"top" index of slice, must be greater than start_index

required

Returns: (max value, index of max value)

column_min(field, start_index, end_index)

Find the minimum value for a full or slice of a column.

Parameters:

Name Type Description Default
field

data to be analyzed

required
start_index

"bottom" index of slice, must be less than end_index

required
end_index

"top" index of slice, must be greater than start_index

required

Returns: (min value, index of min value)

column_min_ddim(field, ddim, start_index, end_index)

Find the minimum value for a full or slice of a column.

Parameters:

Name Type Description Default
field

data to be analyzed

required
start_index

"bottom" index of slice, must be less than end_index

required
end_index

"top" index of slice, must be greater than start_index

required

Returns: (min value, index of min value)