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>
How do I do this in R?
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>
How do I do this in R?
Copyright © 2021 Jogjafile Inc.
Thanks Marius
I did this from the blog post
and got this