Currently when you import the water data using importNCRNWater there is a strict number of columns it should have that are all imported as character. This is to make sure that the info about detection limits from NPStoret is not wiped out in the import process. To make it so there can be any number of columns, all as character add
col_types = cols(.default = "c")
to the import_csv function in importNCRNWater()
Currently when you import the water data using
importNCRNWater
there is a strict number of columns it should have that are all imported as character. This is to make sure that the info about detection limits from NPStoret is not wiped out in the import process. To make it so there can be any number of columns, all as character addcol_types = cols(.default = "c")
to theimport_csv
function inimportNCRNWater()