library(ggplot2)
library(ggExtra)
data("iris")
<- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, colour = Species))
g <- g + geom_point()
g ggMarginal(
g,type = "density",
margins = "both",
size = 5,
groupColour = TRUE,
groupFill = TRUE
)
1 散布図と周辺分布をプロットする方法
2 参考サイト
3 R version
R.version.string
[1] "R version 4.3.0 (2023-04-21)"