1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RPi / python > Plotly再入門 > 1. user name, API Keyの設定 / 2. プログラム実行 > プロット追加は fileopt='extend'

Last updated at Posted at 2016-01-03
動作確認
Raspberry Pi2

Unityのプログラムからplotlyへグラフプロットをしたことはあったが、今度はRaspberry Piからプロットすることになった。

https://plot.ly/python/getting-started/
を参考にやってみた。

前準備

https://plot.ly/python/getting-started/
に書いている以下を実行する。

$ sudo pip install plotly
$ python -c "import plotly; plotly.tools.set_credentials_file(username='DemoAccount', api_key='lr1c37zw81')"

DemoAccountは自分のアカウント、api_keyは自分のAPI KEYを入れて実行する。

API KEYの確認は Settings > API settings のページを参照。

プログラム

plotlyDemo.py
import plotly.plotly as py
py.plot({
	"data":[{
		"x":[1,2,3],
		"y":[4,2,5]
	}],
	"layout":{
		"title":"hellow world"
	}
},filename='hello worled 160103',
	privacy='public')

上記を以下のように実行

$ python plotlyDemo.py

実際に追加されたのが以下
https://plot.ly/268/~7of9/

備考

pythonプログラムにusernameとAPI KEYを埋め込まなくていいのは良い。

RPiを再起動してプログラムを再実行しても、きちんとグラフプロットができた。設定は保持されているのだろう。

プログラム(プロット追加)

既存のグラフへのプロット追加は
,fileopt='extend'
をつければよいようだ。 https://plot.ly/python/file-options/

plotlyDemo.py
import plotly.plotly as py
py.plot({
    "data":[{
        "x":[9,10,11],
        "y":[4,2,5]
    }],
    "layout":{
        "title":"hellow world"
    }
},filename='hello worled 160103'
,fileopt='extend'
,privacy='public')
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?