我正在尝试在R中重新创建来自Python plotly教程的scatterplotmatrix:
http://moderndata.plot.ly/using-plotly-in-jupyter-notebooks-on-microsoft-azure/
我在R中有数据框,但R中的等效图表代码是什么才能重新创建以下Python调用?
fig = FigureFactory.create_scatterplotmatrix(
df, diag='histogram', index='manufacturer',
height=800, width=800,
title='Motor Trend Car Road Tests Scatterplot Matrix'
)
答案 0 :(得分:2)
GGally包中的ggairs()
函数可以通过ggplot2轻松创建广义对图(例如散点图矩阵),而ggplotly()
知道如何将它们转换为图形。
library(GGally)
library(plotly)
ggplotly(ggpairs(iris))