hi
I'm trying to use kde to generate a bivariate density estimate, but although the procedure runs and produces a plot it does not put the results into a SAS dataet. The code I'm using is:
ods html;
ods graphics on;
proc kde data=datain out=devn;
BIVAR VAR1 VAR2;
run;
ods graphics off;
ods html close;
and the data set size is ~510715 records.
The message I get back after the calculation is performed is:
NOTE: Processing BIVAR statement number 1.
NOTE: The data set WORK.DEVN has 0 observations and 0 variables
Anyone have any ideas?
Cheers