Normalize Eye-Movements to Unit Range
normalize.RdThis function normalizes the eye-movements to a unit range based on the specified x and y bounds.
Usage
normalize(x, xbounds, ybounds, ...)
# S3 method for class 'fixation_group'
normalize(x, xbounds, ybounds, ...)Examples
if (FALSE) { # \dontrun{
# Example usage of the normalize function
# input_object <- eye-movement data object
x_bounds <- c(0, 1000) # X bounds for normalization
y_bounds <- c(0, 1000) # Y bounds for normalization
normalized_object <- normalize(input_object, xbounds = x_bounds, ybounds = y_bounds)
} # }