Rpy2を使用してggplot2でデータフレームをプロットしています。私は次のプロットを作成します。
p = ggplot2.ggplot(iris) + \
ggplot2.geom_point(ggplot2.aes_string(x="Sepal.Length", y="Sepal.Width")) + \
ggplot2.facet_wrap(Formula("~Species"))
p.plot()
r["dev.off"]()
各サブプロットに、プロットに関するいくつかの統計を注釈として付けたいと思います。たとえば、各x / yサブプロット間の相関を計算し、それをプロットの右上隅に配置したいと思います。これはどのように行うことができますか?理想的には、データフレームをRからPythonオブジェクトに変換し、相関を計算してから、それらをスキャッターに投影したいと思います。次の変換は機能しませんが、これが私がやろうとしている方法です。
# This does not work
#iris_df = pandas.DataFrame({"Sepal.Length": rpy2.robjects.default_ri2py(iris.rx("Sepal.Length")),
# "Sepal.Width": rpy2.robjects.default_ri2py(iris.rx("Sepal.Width")),
# "Species": rpy2.robjects.default_ri2py(iris.rx("Species"))})
# So we access iris using R to compute the correlation
x = iris_py.rx("Sepal.Length")
y = iris_py.rx("Sepal.Width")
# compute r.cor(x, y) and divide up by Species
# Assume we get a vector of length Species saying what the
# correlation is for each Species' Petal Length/Width
p = ggplot2.ggplot(iris) + \
ggplot2.geom_point(ggplot2.aes_string(x="Sepal.Length", y="Sepal.Width")) + \
ggplot2.facet_wrap(Formula("~Species")) + \
# ...
# How to project correlation?
p.plot()
r["dev.off"]()
しかし、PythonからRデータフレームに実際にアクセスできると仮定すると、これらの相関関係をどのようにプロットできますか?ありがとう。