I try to read a csv file with this code:
%let path= C:\Users\b\file_holidays;
libname bic "&path.\input";
proc iml;
submit bic / R;
bankholidays=read.csv(file.path(bic, "Bankholidays.csv"))
endsubmit;
quit;
but I have the error
"object 'bic' not found".
May you help me?