How do I do a co-plan in R the same way I do it python (shipping package)

How do I do a co-plan in R the same way 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?

+3


source to share


1 answer


Thanks Marius

I did this from a blog post

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

      



and got it

enter image description here

+4


source







All Articles