Nov-02-2019, 10:03 AM
Hello everyone!
I have this tiny problem when using Pandas inside the Spyder IDE. BTW I am still kind of new to Python and libraries so I hope you can forgive me for my beginner question.
So, what I want is to print a preview of a query I made with Google BigQuery (health data). For this, I used
However, what I get in the console view is a "collapsed" view of the data frame with columns replaced by dots in the console, like this:
What I did in my case was to use tkinter to print the entire sheet instead and look at the data. But since this is kind of irritating doing all the time when working with my data, I would love to hear your opinion on this matter.
Thanks very much in advance!
I have this tiny problem when using Pandas inside the Spyder IDE. BTW I am still kind of new to Python and libraries so I hope you can forgive me for my beginner question.
So, what I want is to print a preview of a query I made with Google BigQuery (health data). For this, I used
print(df.head(5))in my script.
However, what I get in the console view is a "collapsed" view of the data frame with columns replaced by dots in the console, like this:
Per stat: provider_city ... average_medicare_payments 0 ABINGTON ... 3992.93 1 AKRON ... 4292.47 2 ALBANY ... 3834.18 3 ALBANY ... 5137.31 4 ALLENTOWN ... 3913.78Note the dots replacing the columns. I have seen other examples of this, and in that case the columns were shown in the preview. So is there a way to enable a wider view of the data frame? I have searched on the internet but all the solutions I tried didn't work as intended

What I did in my case was to use tkinter to print the entire sheet instead and look at the data. But since this is kind of irritating doing all the time when working with my data, I would love to hear your opinion on this matter.
Thanks very much in advance!