Hi there!
I'm working with a data set that has 573 observations and consists of 10 variables. In the code below, I'm trying to remove some of the elements from my output In the log, I'm getting a blue note that says, "NOTE: ODS statements in the SAS Studio environment may disable some output features." Will the approach (included below) I'm taking not work in SAS Studio?
* Step 2: Perform a Chi-Square Test and Save the Results *;
ODS TRACE ON;
PROC FREQ DATA = work.Analysis;
TABLES HypRelDeathInd * StateCd / NOPERCENT NOROW NOCUM CHISQ;
RUN;
ODS TRACE OFF;
ODS OUTPUT CrossTabFreqs = Rslt.StatePercents
(KEEP = StateCd HypRelDeathInd Frequency Colpercent
WHERE = (HypRelDeathInd = 1 AND MISSING(StateCd) = 0));
ODS OUTPUT ChiSq = WORK.ChiSqResults
(DROP = TABLE
WHERE = (Statistic = 'Chi Square'));
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.