<?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: Meta-plot in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875444#M6352</link>
    <description>&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;FANTASTIC and WONDERFUL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Fri, 12 May 2023 12:13:58 GMT</pubDate>
    <dc:creator>GiuseppeC</dc:creator>
    <dc:date>2023-05-12T12:13:58Z</dc:date>
    <item>
      <title>Meta-plot</title>
      <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875238#M6348</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;these days I was reading an article in which the authors, first name Marcel A.L.M. van Assen, create with the R software a very interesting graph, meta-plot, to be used when doing meta-analysis.&lt;BR /&gt;Could this graph be made with SAS?&lt;BR /&gt;I write here the link &lt;A href="https://osf.io/eayfr/" target="_blank"&gt;https://osf.io/eayfr/&lt;/A&gt; where to find the R code and all the material used by the authors.&lt;BR /&gt;The title of the paper is: The Meta-Plot A graphical tool for interpreting the results of a meta-analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 14:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875238#M6348</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-05-11T14:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Meta-plot</title>
      <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875263#M6349</link>
      <description>&lt;P&gt;So which parts do need help in SAS? Summarizing the data? Making the Plots?&lt;/P&gt;
&lt;P&gt;What have you tried so far?&lt;/P&gt;
&lt;P&gt;Where is your data?&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:47:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875263#M6349</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-11T15:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Meta-plot</title>
      <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875430#M6350</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile cards truncover;
input group x y lclm uclm   x0 y0 lclm0 uclm0  ;
cards;
1 0.08 0.57 0.46 0.69
1 0.1  0.55 0.45 0.70
1 0.14 0.54 0.44 0.71
1 0.18 0.53 0.43 0.72
1 0.2  0.5  0.4  0.7
1 0.22 0.46 0.4 0.72
2 0.08 0.55 0.45 0.66
2 0.1  0.52 0.44 0.72
2 0.14 0.5 0.38 0.74
2 0.18 0.48 0.36 0.76
2 0.2  0.46  0.38  0.78
2 0.22 0.44 0.4 0.77
1 .    .    .   .    0.06 0.5  0.42 0.65
2 .    .    .   .    0.06 0.46 0.4 0.6
;





%sganno

data sganno;
%SGARROW( X1=0.1,  Y1=0.85,X2=0,    Y2=0.85,LINETHICKNESS=1,SCALE=0.1,LINECOLOR="black",DRAWSPACE="DATAVALUE",SHAPE= "BARBED")
%SGARROW( X1=0.14, Y1=0.85,X2=0.24, Y2=0.85,LINETHICKNESS=1,SCALE=0.1,LINECOLOR="black",DRAWSPACE="DATAVALUE",SHAPE= "BARBED")
%SGARROW( X1=0.5,  Y1=0.85,X2=0.6,  Y2=0.85,LINETHICKNESS=1,SCALE=0.1,LINECOLOR="black",DRAWSPACE="DATAVALUE",SHAPE= "BARBED")
%SGARROW( X1=0.85, Y1=0.85,X2=0.95, Y2=0.85,LINETHICKNESS=1,SCALE=0.1,LINECOLOR="black",DRAWSPACE="DATAVALUE",SHAPE= "BARBED")

%SGTEXT(LABEL="40%", DRAWSPACE="DATAVALUE",X1=0.08,Y1=0.8)
%SGTEXT(LABEL="60%", DRAWSPACE="DATAVALUE",X1=0.17,Y1=0.8)
%SGTEXT(LABEL="0%",  DRAWSPACE="DATAVALUE",X1=0.55,Y1=0.8)
%SGTEXT(LABEL="0%",  DRAWSPACE="DATAVALUE",X1=0.9,Y1=0.8)
%SGTEXT(LABEL="Sig.=92%",  DRAWSPACE="DATAVALUE",X1=0.55,Y1=0.7,WIDTH=0.4,WIDTHUNIT="DATA")

run;

title 'Meta-plot';
ods graphics /width=5in height=3in  attrpriority=none ;
proc sgplot data=have noautolegend sganno=sganno;
styleattrs AXISEXTENT=data datasymbols=(circlefilled Asterisk);
symbolchar name=right char='2192'x;
symbolchar name=left  char='2190'x;

scatter x=x y=y/group=group yerrorlower=lclm yerrorupper=uclm 
 markerattrs=(size=10 color=black) ERRORBARATTRS=(color=graybb);
scatter x=x0 y=y0/group=group yerrorlower=lclm0 yerrorupper=uclm0 
 markerattrs=(size=10 color=black) ERRORBARATTRS=(color=black);

refline 0/axis=y;
refline 0.57/axis=y lineattrs=(pattern=dash);
refline 0.12/axis=x label='L' lineattrs=(pattern=dash);
refline 0.26/axis=x label='M' lineattrs=(pattern=dash);
refline 0.78/axis=x label='S' lineattrs=(pattern=dash);

yaxis values=(0 to 0.8 by 0.1) label='Effect size(g)';
xaxis values=(0 to 1 by 0.1)   label='Precision';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1683891569711.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83915i5AFC3795C9571386/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1683891569711.png" alt="Ksharp_0-1683891569711.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 11:39:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875430#M6350</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-05-12T11:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Meta-plot</title>
      <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875443#M6351</link>
      <description>&lt;P&gt;Thanks for your answer&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 12:12:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875443#M6351</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-05-12T12:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Meta-plot</title>
      <link>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875444#M6352</link>
      <description>&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;FANTASTIC and WONDERFUL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 12:13:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Meta-plot/m-p/875444#M6352</guid>
      <dc:creator>GiuseppeC</dc:creator>
      <dc:date>2023-05-12T12:13:58Z</dc:date>
    </item>
  </channel>
</rss>

