darbon
1
Hi,
I have a string column in input to a R node called NDG with value 050340000000000079812
I need this column in output:
R<-data.frame(R$"NDG");
The output is a double column:
5.034000000000008E19
How can i mantain the format of the input column?
Thanks
Have you tried something like: data.frame(as.character(R$"NDG")) ?
I think that may get you what you need.
system
Closed
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.