我如何在 R 中像我一样做联合图 python(seaborn 包)

How do I do a jointplot in R the same way as I do it python (seaborn package)

如何在 R 中以与我相同的方式制作联合图 python(seaborn 包)

在python

import seaborn as sns
sns.jointplot(bigdiamonds["price"], bigdiamonds["carat"])

<seaborn.axisgrid.JointGrid at 0x207230b0>

我如何在 R 中执行此操作?

谢谢马吕斯

我是从博客上做的 post

devtools::install_github("WinVector/WVPlots")
library(WVPlots)
ScatterHist(diamonds, "price", "carat")

得到这个