Assignment Operator (<-) (R)

R's primary assignment operator is <-, which binds a value to a name (x <- 5). The = sign also assigns, but <- is the idiomatic R style and avoids ambiguity…