Note

Pandas (46) 본문

Pandas

Pandas (46)

알 수 없는 사용자 2022. 9. 12. 01:58
728x90

How to set the number of rows and columns displayed in the output?

# Input
df = pd.read_csv('https://raw.githubusercontent.com/selva86/datasets/master/Cars93_miss.csv')

# Solution
pd.set_option('display.max_columns', 10)
pd.set_option('display.max_rows', 10)

'Pandas' 카테고리의 다른 글

Pandas (48)  (0) 2022.09.14
Pandas (47)  (0) 2022.09.13
Pandas (45)  (0) 2022.09.11
Pandas (44)  (0) 2022.09.10
Pandas (43)  (0) 2022.09.07
Comments