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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 598 views
  • 0 likes
  • 3 in conversation