I found an issue with the package rpivotTable, see an example blow:
>USD<-c(-14567,212091,-345678,456172)
>KNTD<-c(-231234,111323,-3145670,5012344)
>category<-c("A","B","C","D")
>item<-c("E","F","G","H")
>table<-data.frame(category, item, USD, KNTD)
>table
category item USD KNTD
1 A E -14567 -231234
2 B F 212091 111323
3 C G -345678 -3145670
4 D H 456172 5012344
>rpivotTable(table)
The values are correct in the Table.(Picture1)
However, in picture 2, the value of A shows "-14,600."
in picture 3, the value of C shows "-346,000.", both A and C are not correct
and they are negative values. I'm wondering if it's a bug or did I wrongly missed something. Thanks.