I am trying to plot data with corrplot()
. It works for certain data, but fails for other data, i.e. no error is thrown but the plotting does not finish either. See the following minimal example:
using StatsPlots
A = [3.1860855 3.2 3.2 263.15; 6.372171 1.6 1.6 263.15; 6.372171 1.6 1.6 263.15; 8.496228 1.2 1.2 263.15; 8.496228 1.2 1.2 263.15; 12.744342 0.8 0.8 263.15; 12.744342 0.8 0.8 263.15]
corrplot(A) # works fine
A2 = [6.372171 1.6 1.6 263.15; 6.372171 1.6 1.6 263.15; 8.496228 1.2 1.2 263.15; 8.496228 1.2 1.2 263.15; 12.744342 0.8 0.8 263.15; 16.992456 0.6 0.6 263.15; 16.992456 0.6 0.6 263.15]
corrplot(A2) # does not work
Any ideas?