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?
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?
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.