Hello Guillome,
On Monday, December 22, 2014 9:09:16 PM UTC+1, Guillaume Guy wrote:
>
> Dear Julia users:
>
> Coming from a R background, I like to work with list of dataframes which i
> can reduce by doing do.call('rbind',list_of_df)
>
> After ~10 years of using R, I only recently leaned of the do.call().
In Julia, you would say:
vcat(dfs...)
---david
> In Julia, I attempted to use vcat for this purpose but I ran into trouble:
>
> "
>
> stack overflow
> while loading In[29], in expression starting on line 1
>
> "
>
>
> This operation is basically the vcat of a large vector v consisting of 68K
> small (11X7) dataframes. The code is attached.
>
> Thanks for your help!
>