Thank you. The second method was what I was looking for.
On Monday, December 22, 2014 7:51:09 AM UTC-5, tshort wrote:
>
> 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)))
>
>
>
>
>
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 wrote:
> Is there a way to convert a dictionary into a data frame in such a way
> that