Question

 > 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!

Was it helpful?

Solution

names(coefficients) <- c("int","X1","X2","X3")
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top