- I have a data frame (1 x 30 in dimensions) made entirely of numeric columns (double and integer columns). Some of the integers are 10^12.
- When I convert the data frame to a matrix using as.matrix() function of base R, something strange happens, an integer like, for example here, 10978645435 would not stay the same in the new object (numeric matrix) but it becomes 5.076377571e-314
Any idea why would this happen and how I could possibly fix the issue? Thanks in advance.