当前位置:  开发笔记 > 编程语言 > 正文

粘贴命名向量R

如何解决《粘贴命名向量R》经验,为你挑选了1个好方法。



1> sindri_baldu..:

可以使用[<-保留的属性:

named[] <- paste(named, description)

                 first                 second 
"text 1 description 1" "text 2 description 2" 

该解决方案具有使现有named向量混乱的缺点。您可以通过两个步骤避免它:

x <- named 
x[] <- paste(named, description)

或做一个功能:

foo <- function(x, y) setNames(paste(x, y), names(x))
foo(named, description)

                 first                 second 
"text 1 description 1" "text 2 description 2" 

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有