Absorbance numbers are sometimes in the scientific format e.g. 4.22E-4. Then, the automatic recognition of the decimal point and the field separator does not work.
As a quick solution, you can use something like
abs_data <- absorbance_read(absorbance_path, sep = ",", dec = ".")
Absorbance numbers are sometimes in the scientific format e.g. 4.22E-4. Then, the automatic recognition of the decimal point and the field separator does not work.
As a quick solution, you can use something like abs_data <- absorbance_read(absorbance_path, sep = ",", dec = ".")