假设我在R中有一个名为test的对象。 让,
> x<-c('a','b','c')
> x[1]
[1] "a"
现在我想将对象测试重命名为'a'。所以我试过
> a[1]<-reg_gcm_ind
Warning message:
In a[1] <- reg_gcm_ind :
number of items to replace is not a multiple of replacement length
所以,我无法将测试重命名为'a'。我怎样才能做到这一点?
答案 0 :(得分:0)
我怀疑reg_gcm_ind,你没有包含任何信息,不是标量或长度为1的载体
> x<-c('a','b','c')
> x[1]
[1] "a"
> x[1] <- "something else"
> x
[1] "something else" "b" "c"