I created a correlation plot:
library(nycflights13)
ggpairs(flights) +
ggsave(filename = paste("overall_corr_plot.png"), path = paste(getwd(), "/images", sep = ""))
This gives me an error:
Error in `+.gg`(ggpairs(flights), ggsave(filename = paste("overall_corr_plot.png"), :
'ggmatrix' does not know how to add objects that do not have class 'theme' or 'labels'. Received object with class: 'NULL'
In addition: There were 15 warnings (use warnings() to see them)
It seems it's missing some data. Is it possible to fix this and if yes, how?