IPythonシェルの起動時にPandasとNumPyの表示幅を指定する方法はありますか?実行されます。このディレクトリに起動時にPandasとNumPyのデフォルトの幅が変更される
'00-script.py`
ファイル:私は、ファイルを作成し、この中
'C:\Users\username\.ipython\profile_default\startup'
:たとえば、
# Run this at startup
import numpy as np
np.set_printoptions(linewidth=200)
import pandas as pd
pd.options.display.width = 200
ここはパンダのためのものです:http://stackoverflow.com/questions/21249206/how-to-configure-display-output-in-ipython-pandas – imranal
パンダの設定はあなたに任せますか?このすべて。 PYTHONSTARTUP環境変数を使うほうが簡単かもしれません:http://stackoverflow.com/questions/11124578/automatically-import-modules-when-entering-the-python-または--ipython-interpreter – andrew
@andrewあなたが提供したリンク以下の答えに示すように、起動スクリプトを.ipythonのプロファイルディレクトリに置く方法もありました。ありがとう –