w3resource

Pandas: Widen output display to see more columns

Pandas: DataFrame Exercise-30 with Solution

Write a Pandas program to widen output display to see more columns.

Sample data:
Original DataFrame
col1 col2 col3
0 1 4 7
1 4 5 8
2 3 6 9
3 4 7 0
4 5 8 1

Sample Solution :

Python Code :

import pandas as pd
import numpy as np
d = {'col1': [1, 4, 3, 4, 5], 'col2': [4, 5, 6, 7, 8], 'col3': [7, 8, 9, 0, 1]}
df = pd.DataFrame(data=d)
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
print("Original DataFrame")
print(df)

Sample Output:

   Original DataFrame
   col1  col2  col3
0     1     4     7
1     4     5     8
2     3     6     9
3     4     7     0
4     5     8     1               

Explanation:

The above code first creates a Pandas DataFrame df with columns col1, col2, and col3 using a dictionary 'd'.

Then the code sets some display options for Pandas dataframes 'df'.

  • pd.set_option('display.max_rows', 500) sets the maximum number of rows that Pandas will display to 500.
  • pd.set_option('display.max_columns', 500) sets the maximum number of columns that Pandas will display to 500.
  • pd.set_option('display.width', 1000) sets the maximum width of the display to 1000 characters.

Finally print() function prints the dataframe ‘df’.

Python-Pandas Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to delete DataFrame row(s) based on given column value.
Next: Write a Python Pandas program to select a row of series/dataframe by given integer index

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/pandas/python-pandas-data-frame-exercise-30.php