본문 바로가기
R, Rstudio

scatterplot matrix in R packages 산점도 행렬

2017. 9. 24.


CAR

http://www.r-graph-gallery.com/99-scatterplot-matrix-car-package/




ggplot+plotmatrix




GGally

library(GGally)
ggpairs(iris[,1:4])

ggplot2 and ggally - R software and data visualization

Plot generated by above code


ggcorplot

ggcorplot(
  data = iris[1:4],
  var_text_size = 5,
  cor_text_limits = c(5,10))



Five ways to visualize your pairwise comparisons

https://www.r-bloggers.com/five-ways-to-visualize-your-pairwise-comparisons/


댓글