0 votes
in R Language by
Basic heat map in R Language

1 Answer

0 votes
by

The most basic plot of the package is a heat map. The legend of the graph shows a gradient color from - 1 to 1, with hot color indicating strong positive correlation and cold color, a negative correlation.

library(GGally)
ggcorr(data)

Code Explanation

  • ggcorr(data): Only one argument is needed, which is the data frame name. Factor level variables are not included in the plot.

Related questions

0 votes
asked Nov 14, 2019 in R Language by MBarbieri
0 votes
asked Nov 14, 2019 in R Language by MBarbieri
...