I don't want the display format like this: 2.150209e+06 the format I want is 2150209 because when I export data, format like 2.150209e+06 caused me a lot of trouble. I did some search found this function could help me
formatC(numeric_summary$mean, digits=1,format="f").
I am wondering can I set options to change this forever? I don't want to apply this function to every variable of my data because I have this problem very often.
One more question is, can I change the class of all integer variables to numeric automatically? For integer format, when I sum the whole column usually cause trouble, says "integer overflow - use sum(as.numeric(.))". I don't need integer format, all I need is numeric format. Can I set options to change integer class to numeric please?