*Thanks Milan ! ;)*

julia> using DataFrames 
 
julia> sep = '\t' 
'\t' 
 
julia> data = DataFrame[] 
0-element Array{DataFrames.DataFrame,1}




 

> The problem is in this line, which creates an array of arrays of data 
> frames. It should simply be 
> DataFrame[] 
> or even 
> [] 
> given that a data frame is a complex object that cannot be stored in 
> contiguously in an array anyway, and that type inference is likely not 
> critical here. 
>
>
> Regards 
>

Reply via email to