📅  最后修改于: 2022-03-11 14:56:43.929000             🧑  作者: Mango
/*Heatmap using PROC SGPLOT*/
proc sgplot data=sashelp.cars;
heatmap x=weight y=mpg_city /
xbinsize=500
ybinsize=5;
run;
/*Heatmap in IML*/
proc iml;
data_matrix = {1 2 3,
3 2 1,
1 2 3};
call HeatmapCont(data_matrix);
quit;