I’m having issues after running the results through the R code provided in the PCIbex documentation to transform data. Basically, the numbers obtained in EventTime are read as scientific notation and then rounded up. So, for example, if in the raw .csv file the number obtained is 1657649750095, in the final data frame, after running the R code, the following number appears 1660000000000.
Unless you explicitly tell it to do so, R will not modify the values in the EventTime column. Nor will the read.pcibex function provided in the documentation. That being said, there are preview methods that will alter how the values are displayed
Maybe your code applies some transformation on the data somewhere else. Would you mind sharing it, so I can take a look?