Hi,
I have a model built in SAS model Studio and would like to create a model package using %aa_macro_register. One of the parameter is scorecodefile (below). How should the path for . sas file look like?When I specify the path where my code is saved, it doesn't recognize the path.
I know how to register using the GUI but I would like to do it with the macro
Thank you
%aa_model_register(
modelname=&model_name1,
modeldesc=%bquote(logselect_badloans model from CAS),
data=mycas.&training_dataset,
target=BAD,
level=binary,
scorecodefile=~/&model_name1..sas,
scorecodeformat=DATASTEP,
register=N,
spk=Y,
spkfolder=%str(~),
miningfunction=classification,
debug=N);