Select the last n columns of data frame in R

前端 未结 7 1004
礼貌的吻别
礼貌的吻别 2021-01-04 04:42

Is there a way to systematically select the last columns of a data frame? I would like to be able to move the last columns to be the first columns, but maintain the order of

7条回答
  •  清酒与你
    2021-01-04 04:46

    Another alternative with dplyr:

    mydata2 <- select(mydata, 2:ncol(data),1)  
    #select any cols from col2 until the last col and place them before col1
    

提交回复
热议问题