Change the column type in Data in R Studio

-1

I would like to know where I can get a data modeling material in R Studio ... I need to modify some columns, changing from text to value, for example, but I do not know which command to use.

Could someone tell me some material? or support site?

    
asked by anonymous 01.04.2018 / 18:43

1 answer

0

I found the answer ... just enter the colnames procedure ..

colnames (dataset) [column corresponding number in dataset] < - "New column name"

So I can change the column name, as long as I know the position of the column.

    
02.04.2018 / 23:17