> coefficients
 [1] -0.052993570  0.071073199 -0.004234659 -0.005725687 

How can I rename the columns of my vector "coefficients" in order to get?

> coefficients
      int           X1          X2           X3     
 -0.052993570  0.071073199 -0.004234659 -0.005725687 

Thanks!

有帮助吗?

解决方案

names(coefficients) <- c("int","X1","X2","X3")
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top