Failed to precompile CSV due to load error

I also later found that broadcasting the identity function over the data-frame variable did the trick

data, header = readdlm("myfile.csv", ',', header= true);
df=  DataFrame(data, vec(header));
df_new = identity.( DataFrame(data, vec(header)))