Skip to content
Back to formatted view

Raw Message

Message-ID: <CAMk+s2RVUKu0Z-oNnwbsiij5v7tKzt25HbonNO0rYuq=Okez=g@mail.gmail.com>
Date: 2019-08-08T14:08:27Z
From: Luigi Marongiu
Subject: Error exporting dataframe from Julia to R with Feather

Hello,

since I am encountering a lot of problems exporting dataframes from
julia to R (there is always something wrong with the formatting,
probably a missing quote) so I am trying to use Feather to do the job.

I have installed Feather in Julia with `pkg.add("Feather")` and
imported it with `using Feather`. I created a dataframe and saved it
with `Feather.write("/dir/dataframe.feather", df)` and it worked. I
can even open it back with `df =
Feather.read("/dir/dataframe.feather")` and get: `julia> nrow(df)
128544`.
The problem is with R. I am using Rstudio to test each step.
I installed the package, imported it with `library(feather)` and used it as:
```
df = read_feather("/dir/dataframe.feather")
```
and then Rstudio simply crashes.
any idea why?
Thank you