Can we load pandas DataFrame in .NET ironpython?

Alok picture Alok · Jan 21, 2013 · Viewed 8.2k times · Source

Can we load a pandas DataFrame in .NET space using iron python? If not I am thinking of converting pandas df into a csv file and then reading in .net space.

Answer

Jeff Hardy picture Jeff Hardy · Jan 21, 2013

No, Pandas is pretty well tied to CPython. Like you said, your best bet is to do the analysis in CPython with Pandas and export the result to CSV.