5
I have the following problem here at work: in a data frame I have a column of Gross value at certain date:
2016-02-01 751434574
2016-03-01 748873781
2016-04-01 755528121
To work in the R without problems, but I need to prepare a spending report and my boss asked to appear in the format of currency, as below:
2016-02-01 R$ 751.434.574
2016-03-01 R$ 748.873.781
2016-04-01 R$ 755.528.121
Is there a function of any package that already does that, or will I have to create a regular expression?
It was something like this I was looking for, soon I test and I reply
– Flavio Silva