In order to load FILE Parameters, the path of the source Model (GeneratedResources) is added to the parameter ID. For R, the function "paste" is used:
paste( "path/to/file/" , parameter_id )
This however leads to a space character between path and filename (ID).
"/path/to/file/ myfile.csv"
This throws an error when using read.csv to read the file later into the R workspace.
In order to load FILE Parameters, the path of the source Model (GeneratedResources) is added to the parameter ID. For R, the function "paste" is used: paste( "path/to/file/" , parameter_id )
This however leads to a space character between path and filename (ID). "/path/to/file/ myfile.csv"
This throws an error when using read.csv to read the file later into the R workspace.