Hi all,
We are here creating a visualization that at first page loads a CSV file using SAS Job Execution and classifies that data using SAS Model Studio Text Analytics code. The below part of code is used for the same:
proc cas;
session sascas;
loadactionset "textRuleScore";
action applyConcept
model={..}
table={..}
docId=
text=
casOut=
factOut=
;
run;
This creates an output similar to the below.
I dont want this to be visible in my visualization.
So is there any way to hide CAS output results, like the option --> "noprint" is used in proc statements to hide the results.
Thanks & Regards,
Anjali Nair
Use
ods html select none;
before the PROC, and if you want additional outputs from later steps in the program, use
ods html select all;
after the PROC
Use
ods html select none;
before the PROC, and if you want additional outputs from later steps in the program, use
ods html select all;
after the PROC
Hi Paige,
Thanks
That just worked the way I was expecting.
Just that it was a Job Execution output I used the following :
ods select none;
Moving the post to the Developers Community as the Coding on SAS Viya Community is being sunset.
Join us for SAS Community Trivia
SAS Bowl XLVII, SAS Visual Text Analytics
Wednesday, December 18, 2024, at 10:30 a.m. ET | #SASBowl
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.