Try this:

convert(DataFrame, d)   # where d is your dict

You can also use a more long-winded direct call:

DataFrame(collect(values(d)), collect(keys(d)))





On Sun, Dec 21, 2014 at 10:28 PM, Min-Woong Sohn <mws...@gmail.com> wrote:

> Is there a way to convert a dictionary into a data frame in such a way
> that the keys in the dictionary become indexes in the data frame and values
> become a column?
>

Reply via email to