Hi,
Thanks for the answer, I was trying to avoid one long file so I opted not to use the stacked csv. Also I am more used to work with a list o tables.
I did manage no save by the following way:
f = open("/home/resultados.jl", "w")
print(f, vec_results)
close(f)
,and reading by:
vec_res=include("/home/resultados.jl")
The only thing I had to do was change from DataFrame to Array and it worked fine.
Thanks!