Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が実行するとき:
a <- seq(1,1.5,0.1) b <- c(1,1.1,1.4,1.5) x <- rep(c(a,b),times=c(2,1))
rep(c(a, b), c(2, 1)) のエラー: 'times' 引数が無効です
なんで?
2 つのベクトルを連結 ( c) すると、1 つのベクトルになります。'a' を 2 で、'b' を 1 で複製するという考えであれば、それらを a に配置しlist、 を使用しますrep。出力は になりlist、これをunlist編集して を取得できますvector。
c
list
rep
unlist
vector
unlist(rep(list(a,b), c(2,1)))