BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
AnjaliNair
Calcite | Level 5

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.

CasOuput.png

 

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

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

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

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

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

--
Paige Miller
AnjaliNair
Calcite | Level 5

Hi Paige,

 

Thanks Smiley Happy

 

That just worked the way I was expecting.

 

Just that it was a Job Execution output I used the following :

 

ods select none;

 

joeFurbee
Community Manager

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 XXXVI, Data Simulation
Wednesday, December 13, 2023, at 10 a.m. ET | #SASBowl

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1385 views
  • 0 likes
  • 3 in conversation