Create sequence of repeated values, in sequence?
You missed the each= argument to rep(): R> n <- 3 R> rep(1:5, each=n) [1] 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 R> so your example can be done with a simple R> rep(1:8, each=20)
You missed the each= argument to rep(): R> n <- 3 R> rep(1:5, each=n) [1] 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 R> so your example can be done with a simple R> rep(1:8, each=20)
In Java terms, Scala’s Seq would be Java’s List, and Scala’s List would be Java’s LinkedList. Note that Seq is a trait, which is equivalent to Java’s interface, but with the equivalent of up-and-coming defender methods. Scala’s List is an abstract class that is extended by Nil and ::, which are the concrete implementations of … Read more