I have the following problem here at work: in a data frame I have a column of Gross Value on certain date:
2016-02-01 751434574
2016-03-01 748873781
2016-04-01 755528121
To work on R without problems, but I need to prepare an expense report and my boss asked for it to appear in the currency format, 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 any package function that already does this, or will I have to create a regular expression?