<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: correct graphics program (continue) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/correct-graphics-program-continue/m-p/314022#M68341</link>
    <description>&lt;PRE&gt;
ods graphics /imagename="Circle" antialiasmax=11000;
proc sgplot data=MCint aspect=1;
styleattrs datacontrastcolors=(black yellow);
scatter x=Ux y=Uy / group=Under markerattrs=(symbol=circlefilled size=5);
xaxis min=0 max=1;
yaxis min=0 max=1;
run;

&lt;/PRE&gt;</description>
    <pubDate>Thu, 24 Nov 2016 09:31:26 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-11-24T09:31:26Z</dc:date>
    <item>
      <title>correct graphics program (continue)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/correct-graphics-program-continue/m-p/313985#M68319</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data MCint;
call streaminit(12345);
do isim=1 to 10000;
    Ux = rand("UNIFORM");
    Uy = rand("UNIFORM");
    Under = (Uy&amp;lt;=sqrt(1-Ux**2));
    drop isim;
    output;
    end;
run;

ODS OUTPUT OneWayFreqs=data_freq;
proc freq;
table Under;
run;

proc print data =data_freq;run;

data _null_; 
set data_freq;
if under=1;
PI_est=4*Percent/100;
prop_est=Percent/100;
SE_PI_EST=4*sqrt(prop_est*(1-pop_est)/10000);
PI_CI_Low=PI_est-2*SE_PI_EST;
PI_CI_Up=PI_est-2*SE_PI_EST;
file print;
put ' ------------------------------------------';
put ' | MC Integration estimate of PI          |';
put ' ------------------------------------------';
put ' PI(estimate)=' PI_est;
put ' SE[PI(estimate)]=' SE_PI_EST;
put ' Approx. 95% CI=' PI_CI_Low' ,' PI_CI_Up;
put ' ' ;
put ' Based on 10,000 simulated points.' ;
put ' ------------------------------------------' ;
run;

ods graphics / imagename="Circle" antialiasmax=11000;
proc sgplot data=MCint aspect=1;
scatter x=Ux y=Uy / group=Under markerattrs=(symbol=Plus size=5);
xaxis min=0 max=1;
yaxis min=0 max=1;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It a question after the previous question and the answer is above. I found that I can't control color of the dot in the program when I use the previous command. Where should I rewrite the code?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  ods graphics / reset width=50px height=300px;
  symbol1 value=dot color=black;
  symbol2 value=dot color=yellow;
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Nov 2016 07:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/correct-graphics-program-continue/m-p/313985#M68319</guid>
      <dc:creator>karen8169</dc:creator>
      <dc:date>2016-11-24T07:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: correct graphics program (continue)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/correct-graphics-program-continue/m-p/314022#M68341</link>
      <description>&lt;PRE&gt;
ods graphics /imagename="Circle" antialiasmax=11000;
proc sgplot data=MCint aspect=1;
styleattrs datacontrastcolors=(black yellow);
scatter x=Ux y=Uy / group=Under markerattrs=(symbol=circlefilled size=5);
xaxis min=0 max=1;
yaxis min=0 max=1;
run;

&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Nov 2016 09:31:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/correct-graphics-program-continue/m-p/314022#M68341</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-24T09:31:26Z</dc:date>
    </item>
  </channel>
</rss>

