デモ
http://d.hatena.ne.jp/mickey24/20110223/ggplot2_qplot
参考のページです。お世話になっております。
__
追記で
こちらも。
【ggplot】Pythonでggplotを使う
http://kiito.hatenablog.com/entry/2014/03/25/175654
http://www15191ue.sakura.ne.jp:8000/home/pub/36/
本家。でも、なんか、リンク切れが…。
https://pypi.python.org/pypi/ggplot
___
Rで、ggplotを利用するのは、一般的ですが、
pythonにggplotをインストールした後で、下のような絵を出せました。
from ggplot import * h = ggplot(diamonds, aes(x= 'carat', y= 'price', fill = 'clarity', col = 'clarity')) + geom_point() print h
ipython上などで、実行。
それと。
diamonds_demo_point.pyとして保存。
python diamonds_demo_point.py
あ。でも、データは、ggplotに含まれているdiamondsです。
diamondsとtypeしてenterすると、中身を見れます。Rと同じことをどうやったらできるか、試行錯誤してみましょうかねー。