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).

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

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