Hello, I am trying to include only the distribution graph, normality information/curve, and quantiles output in my results. However when I use ods select, it is giving me the quantiles for every variable in my data set. Is there a way to only show the quantiles for the variable in question (here called variable name)?
ods listing close;
ods select Quantiles;
proc univariate data=DataSet1;
by Group1 Group2;
histogram VariableName / normal;
inset n="N" / pos = nw;
run;
ods listing;
Hi:
Have you tried restricting the variables to Univariate using the VAR statement? Just because you have a HISTOGRAM statement does not limit the variables used for analysis. Usually the VAR statement restricts the variables used for analysis. This is what it says in the documentation for Univariate:
"The VAR statement specifies the analysis variables and their order in the results. By default, if you omit the VAR statement, PROC UNIVARIATE analyzes all numeric variables that are not listed in the other statements."
cynthia
Hi:
Have you tried restricting the variables to Univariate using the VAR statement? Just because you have a HISTOGRAM statement does not limit the variables used for analysis. Usually the VAR statement restricts the variables used for analysis. This is what it says in the documentation for Univariate:
"The VAR statement specifies the analysis variables and their order in the results. By default, if you omit the VAR statement, PROC UNIVARIATE analyzes all numeric variables that are not listed in the other statements."
cynthia
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.