最佳方法以编程方式扩展和重新排序R中的数组?

huangapple go评论84阅读模式
英文:

Best way to programatically extend and re-order array in R?

问题

使用paste函数可以得到cols3,而不需要使用循环。以下是代码示例:

  1. cols3 <- paste(cols1, cols2)
  2. cols3

这将生成与所需cols3相同的输出。

英文:

Very simple R question:

What simplest operation should I use with cols1 and cols2 to obtain cols3 below?
(using loop is not the answer)

  1. &gt; cols1 &lt;- paste0(letters[1:3]);cols1
  2. [1] &quot;a&quot; &quot;b&quot; &quot;c&quot;
  3. &gt; cols2 &lt;- paste0(cols1, &quot;.new&quot;); cols2
  4. [1] &quot;a.new&quot; &quot;b.new&quot; &quot;c.new&quot;
  5. &gt; cols3 = c(&quot;a&quot;, &quot;a.new&quot; , &quot;b&quot; ,&quot;b.new&quot; , &quot;c&quot;, &quot;c.new&quot;); cols3
  6. [1] &quot;a&quot; &quot;a.new&quot; &quot;b&quot; &quot;b.new&quot; &quot;c&quot; &quot;c.new&quot;
  7. </details>
  8. # 答案1
  9. **得分**: 3
  10. 使用`c` + `rbind`
  11. ```r
  12. c(rbind(cols1, cols2))
  13. #[1] "a" "a.new" "b" "b.new" "c" "c.new"

FYI,这有时被称为“交错”或“交织”。还有内置的vctrs::vec_interleave

  1. vctrs::vec_interleave(cols1, cols2)
  2. #[1] "a" "a.new" "b" "b.new" "c" "c.new"
英文:

With c + rbind

  1. c(rbind(cols1, cols2))
  2. #[1] &quot;a&quot; &quot;a.new&quot; &quot;b&quot; &quot;b.new&quot; &quot;c&quot; &quot;c.new&quot;

FYI, this is sometimes called "interleaving", or "interlacing".
There is also the built-in vctrs::vec_interleave:

  1. vctrs::vec_interleave(cols1, cols2)
  2. #[1] &quot;a&quot; &quot;a.new&quot; &quot;b&quot; &quot;b.new&quot; &quot;c&quot; &quot;c.new&quot;

huangapple
  • 本文由 发表于 2023年2月6日 21:32:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/75361960.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定