I am trying to generate a plot from my data set that gives the correlation between my variables.
I am using the library GGally. here is my one line code.
ggpairs(Imputed_data, title = "Scatterplot Matrix for the features of data Set")
I am getting a error
_bin()
using
bins = 30. Pick better value with
binwidth`.
My data set has 14 variables, 13 are numeric and 1 is a factor variables.
I could understand that there is a problem with declaration of bins, that I should mention (bins=10) But, I am struck how I should do it in my code. I am new to R programming.