BookmarkSubscribeRSS Feed
deleted_user
Not applicable
hello dears SAS users
when i do this:
proc sort data=sashelp.class out=class;
by sex;
run;
ods trace on;
Proc Univariate Data=class;
Var height;
by sex;
QQPlot / Normal(mu=est sigma=est);
Run;

I obtain what i want but i want my symbols biggers and in red ?
how could i change it ?
Thank you.
2 REPLIES 2
Andre
Obsidian | Level 7
here the beginning of a solution , but do you are at ease with sas graph?

[pre]
ods graphics on;
symbol v=dot color=red;
Proc Univariate Data=class;
Var height;
by sex;
QQPlot / Normal(mu=est sigma=est);
Run;
[/pre]
Doc_Duke
Rhodochrosite | Level 12
Agree with Andre. UNIVARIATE is such an old procedure that it hasn't kept up with the flexibility of the other graphics in SAS. It doesn't even handle ActiveX for ODS RTF output properly (9.1.3 is smart enough to change the graphic call to something that UNIVARIATE did understand; 9.2 lost that work-around).

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1034 views
  • 0 likes
  • 3 in conversation