R is adding extra numbers while reading file
问题 I have been trying to read a file which has date field and a numeric field. I have the data in an excel sheet and looks something like below - Date X 1/25/2008 0.0023456 12/23/2008 0.001987 When I read this in R using the readxl::read_xlsx function, the data in R looks like below - Date X 1/25/2008 0.0023456000000000 12/23/2009 0.0019870000000000 I have tried limiting the digits using functions like round, format (nsmall = 7), etc. but nothing seems to work. What am I doing wrong? I also