散布図と周辺分布

R
Author

Nobukuni Hyakutake

Published

2023-10-08

1 散布図と周辺分布をプロットする方法

library(ggplot2)
library(ggExtra)
data("iris")

g <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, colour = Species))
g <- g + geom_point()
ggMarginal(
  g,
  type = "density",
  margins = "both",
  size = 5,
  groupColour = TRUE,
  groupFill = TRUE
)

2 参考サイト

R ggplot2を用いて散布図と周辺分布をプロットする方法

3 R version

R.version.string
[1] "R version 4.3.0 (2023-04-21)"