Have any of you had this issue before? I am working on using corrplot in R Markdown but when I run the code it seems to through two different visualizations instead of the one that I need. See example and code below.
library(corrplot)
library(corrgram)
df <- read.csv("C:/Users/muribe/Documents/Happiness.csv",row.names = 1)
df <- df[-c(1:3)]
df <- na.omit(df)
df <- corrgram(df)
corrplot(df, method = 'circle',tl.srt = 60)