--- lang: ja-jp breaks: true --- # Python Pandas 出力する行数・列数を設定 2021-07-24 ```python= import pandas as pd #現在の最大表示列数の出力 pd.get_option("display.max_columns") #最大表示列数の指定(ここでは50列を指定) pd.set_option('display.max_columns', 500) #現在の最大表示行数の出力 pd.get_option("display.max_rows") #最大表示行数の指定(ここでは50行を指定) pd.set_option('display.max_rows', 50) ``` ###### tags: `Pandas` `Python` `設定`
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up