I have a column filled with numbers (generated with the runif function). I would like to transform the number to thousands.
To clarify:
column: 0.36984587
test_dataset$DEBT<-gsub("\\.", ",", test_dataset$DEBT)
|
column: 0,36984587
test_dataset$column<-test_dataset$column*1000000
|
column: 369845,87
I want to a tranform it to 369.845,87. How do I do that for 4000 rows?