What are the differences between the assignment operators =
and <-
in R? R中赋值运算符=
和<-
之间有什么区别? this
I know that operators are slightly different, as this example shows 我知道运算符略有不一样,如本例所示 spa
x <- y <- 5 x = y = 5 x = y <- 5 x <- y = 5 # Error in (x <- y) = 5 : could not find function "<-<-"
But is this the only difference? 但这是惟一的区别吗? .net