I want to use the chart of SAS on Spotfire.
So I tries to create png file as binary data on SAS.
Is that possible?
I try to import the png file as binary data, but Sas did not. On R, "read.bin"
data test2;
infile "&filepath" recfm=f;
input value binary8.1 @@;
run;
Please let me know.