Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just started using Pandas, and so far it's been great for what I'm doing. I have just one problem though; the tables it generates won't align column names and rows. Is there a solution to this? Basically, I don't see column names above the correct data, but all packed to the left. The data shows up nicely formatted, though.

P.S. I used the pd.read_csv() function to output a csv file with a date series.

share|improve this question
3  
Can you share example output and the code you used to produce it? – Aman Nov 17 '12 at 19:48

closed as not a real question by Andy Hayden, Martijn Pieters, Lev Levitsky, Shree, Junuxx Nov 18 '12 at 12:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Shohei,

There could be a number of different things going on, depending on your environment and what exactly you are doing. If you provide some more information, that will help us help you.

Consider using ipython, in particular, an ipython notebook, if possible. Also, try widening your terminal or window width. Try df.head() and share with us what you get.

share|improve this answer
Thanks Aman, Yeah, I'm using IPython ($ ipython notebook --pylab=inline), and I also tried widening the window without any results. The code I used is: df = pd.read_csv('data/test1.csv') df I didn't do anything fancy, just opening it up in IPython. – Shohei Narron Nov 17 '12 at 21:02
Screenshot, please? – Aman Nov 17 '12 at 23:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.