I am running the below code in SAS university Studio & Keep encountering the below Error. Error: The data set perm.EX1 must be a CAS engine libref. I am unable to figure out, how to create a CAS engine libref. **********************************************************************************************; libname perm '/folders/myfolders/Data'; data mycas.ex1;
length id 8;
do id=1 to 1000000;
x1 = ranuni(101);
x2 = 10*ranuni(201);
output;
end;
run; proc binning data=mycas.ex1 numbin=10 method=quantile; input x1-x2; output out=mycas.out1; run;
... View more