Re: [julia-users] Converting a dictionary object to a Data Frame

2014-12-22 Thread Min-Woong Sohn
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))) > > > > >

Re: [julia-users] Converting a dictionary object to a Data Frame

2014-12-22 Thread Tom Short
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