1.

What Is The Difference Between Seq(4) And Seq_along(4)?

Answer»

Seq(4) means VECTOR from 1 to 4 (c(1,2,3,4)) whereas seq_along(4) means a vector of the length(4) or 1(c(1)).

Seq(4) means vector from 1 to 4 (c(1,2,3,4)) whereas seq_along(4) means a vector of the length(4) or 1(c(1)).



Discussion

No Comment Found