To disable scientific notation in R, you can run the following:
options(scipen = 999)
Then you can print the whole number instead of its exponential form.
You can also use format() with scientific=FALSE. It will return a string that can be cast to numeric.
Here is an example:
> options(scipen = 999)
> a=1.4343e10
> a
[1] 14343000000
> as.numeric(format(a,scientific = FALSE))
[1] 14343000000
>