Hello All,
I have a question regarding how / why a column of data is imported in the incorrect format.
Below I have an example of how the column of data (ID) is imported into R.
7324406373
2.10042E+17
2.10042E+17
2.10042E+17
2.10042E+17
29LH7ED
2.10042E+17
What I need is for the column show the full character amount of 17 characters instead of 2.10042E+17.
All the help is greatly appreciated and below you will find a small DF to use in potentially helping me with this endeavor.
names <- c("Alice", "Bob", "Carol")
ages <- c(18,21,19)
ID <- c("7324406373", "2.10042E+17", "3.00001E+13")
df <- data.frame(names, ages, ID)
Thank you!