2015-12-14から1日間の記事一覧

<Python, plotly> Open-source

plotlyがOpen-sourceになったらしい。 plot.ly つうことで、offlineを試してみる。 plot.ly ipython notebookを立ち上げて、 In [13]: from plotly import __version__ from plotly.offline import download_plotlyjs, init_notebook_mode, iplot plotly.__v…

<Python, iPython> ipython notebookで起動ブラウザを指定

ipython notebookで起動ブラウザを指定する方法。 ipython_config.pyに下記を書き込む。(firefoxの場合) c.NotebookApp.browser = u'/usr/bin/firefox %s' ipyhton_config.pyはprofileがdefaultならば下記にあるはず。 /home/hage/.ipython/profile_default…