Reclassify select columns in Data Table

后端 未结 3 1907
忘掉有多难
忘掉有多难 2021-02-06 10:40

I wish to change the class of selected variables in a data table, using a vectorized operation. I am new to the data.table syntax, and am trying to learn as much as possible. I

3条回答
  •  北海茫月
    2021-02-06 10:50

    You could avoid the overhead of the construction of .SD within j by using set

    for(j in index) set(data, j =j ,value = as.character(data[[j]]))
    

提交回复
热议问题