Normalize Eye-Movements to Unit Range
normalize.Rd
This function normalizes the eye-movements to a unit range based on the specified x and y bounds.
Examples
# Example usage of the normalize function
input_object <- # input object data containing eye-movements
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)
#> Error in UseMethod("normalize", x): no applicable method for 'normalize' applied to an object of class "c('double', 'numeric')"