Hello, I am try to create a heatmap of correlations. To do so, I essentially followed Benn Jann's code on page 38. For example:
However, when I run this code, I get the following error
I am confused as to why I am getting this error as my code is identical to that of Jann's. When I search for this error online, I have trouble finding any leads. Does anyone know the source of it and how to resolve it?
Code:
quietly corr hrrscale var1 var2 var3 var4 matrix W = r(C) heatplot W, values(format(%9.3f)) color(hc1, diverging intensity(.6)) /// legend(off) aspectratio(1) lower drop(0)
Code:
function drop() not declared in class ColrSpace (120 lines skipped) (error occurred while loading colorpalette.ado) r(3000);
Comment