Re: [C++-sig] Boost Python. access pandas columns in the same order as in python

2016-10-05 Thread Vladimir Sakharuk
ible. Jim On Wed, Oct 5, 2016 at 12:31 PM, Stefan Seefeld mailto:ste...@seefeld.name>> wrote: On 04.10.2016 09:05, Vladimir Sakharuk wrote: > > Hello All, > > > Trying to figure out how to c++ access pandas dataframe columns in the > same order as they

[C++-sig] Boost Python. access pandas columns in the same order as in python

2016-10-05 Thread Vladimir Sakharuk
Hello All, Trying to figure out how to c++ access pandas dataframe columns in the same order as they exist in the python. in python: import pandas df = pandas.DataFrame.from_items([('CCC', [5]), ('BBB', [1]), ('AAA', [4])]) df.columns # outputs Index([u'CCC', u'BBB', u'AA