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

2.4k Views Asked by At

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

In python

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

<seaborn.axisgrid.JointGrid at 0x207230b0>

enter image description here

How do I do this in R?

1

There are 1 best solutions below

1
On BEST ANSWER

Thanks Marius

I did this from the blog post

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

and got this

enter image description here