Replicate Elements of Vectors and Lists rep replicates the values in x. It is a generic function, and the (internal) default method is described here. -> rep는 x에 있는 값들을 반복한다. Replicate의 사전전 의미 : 자기 복제를 하다 즉, rep() 함수는 숫자나 변수의 값을 time 인자에 지정하는 횟수만큼 replicate (반복)한다. > rep(1:5) [1] 1 2 3 4 5 > rep("Apple", time = 3) [1] "Apple" "Apple" "Apple > rep(1:3, each=2) [1] 1 1 2 2 3 3 rep 함수 내에는 time 인자와 ..