#author("2020-01-29T19:39:43+00:00","","")
#mynavi()
#setlinebreak(on)

* 目次 [#aca986db]
#contents
- 関連
-- [[Python]]
-- [[Python覚え書き]]
-- [[IPythonの使い方メモ]]

#TODO

* インストール [#n8186efa]
#html(<div style="padding-left:10px">)
https://www.anaconda.com/download/
#html(</div>)

* 起動 [#ncfccf39]
#html(<div style="padding-left:10px">)
#myterm2(){{
jupyter notebook
}}
#html(</div>)

* マジックコマンド [#nca4ac2a]
#html(<div style="padding-left:10px">)
基本的に IPython のマジックコマンドが分かってれば大丈夫。
※[[IPythonの使い方メモ]] 参照
#html(</div>)

* Tips [#s7748688]
#html(<div style="padding-left:10px">)

** 全ての変数等を整形して表示する [#h137d758]
#html(<div class="pl10">)

変数名を書くだけで表示
#mycode2(){{
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"

df1 = .......
df2 = .......

df1
df2
}}

dispplay による表示
#mycode2(){{
from IPython.display import display

  :
display(df1)
display(df2)
}}

#html(</div>)



#html(</div>)

トップ   一覧 単語検索 最終更新   ヘルプ   最終更新のRSS