<?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: matching percentiles on the graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536438#M17817</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
set sashelp.class(firstobs=16);
x1=0;
run;

proc sgplot data=x;
scatter x=weight y=height/ markerattrs=(symbol=trianglefilled size=10 color=black);
dropline x=weight y=height/ dropto=x lineattrs=(color=black);

scatter x=x1 y=height/ markerattrs=(symbol=triangleleftfilled size=10 color=black);
dropline x=weight y=height/ dropto=y lineattrs=(color=black);
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 18 Feb 2019 11:38:30 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2019-02-18T11:38:30Z</dc:date>
    <item>
      <title>matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536219#M17813</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'd like to create a graph as below. I have a data set including two variables. x axis will be one of the variables' percentiles and y axis will have the other one's percentiles. I did something in excel but I couldn't draw the arrows. Is there a way to draw that fancy graph?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="want.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27224iB9F2E9E20E067DB5/image-size/large?v=v2&amp;amp;px=999" role="button" title="want.jpg" alt="want.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 05:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536219#M17813</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-02-17T05:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536281#M17815</link>
      <description>&lt;P&gt;If you wanted just the lines, you could use DROPLINE in SGPLOT. For arrows, you will need VECTOR in SGPLOT. for the curve, use SPLINE.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 20:07:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536281#M17815</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-17T20:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536302#M17816</link>
      <description>Or via GTL, using DRAWARROW statements.</description>
      <pubDate>Sun, 17 Feb 2019 23:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536302#M17816</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-17T23:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536438#M17817</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x;
set sashelp.class(firstobs=16);
x1=0;
run;

proc sgplot data=x;
scatter x=weight y=height/ markerattrs=(symbol=trianglefilled size=10 color=black);
dropline x=weight y=height/ dropto=x lineattrs=(color=black);

scatter x=x1 y=height/ markerattrs=(symbol=triangleleftfilled size=10 color=black);
dropline x=weight y=height/ dropto=y lineattrs=(color=black);
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Feb 2019 11:38:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536438#M17817</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-18T11:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536459#M17820</link>
      <description>&lt;P&gt;An example (without the arrows) is shown in the article &lt;A href="https://blogs.sas.com/content/iml/2018/03/07/fit-distribution-matching-quantile.html" target="_self"&gt;"Fit a distribution from quantiles,"&lt;/A&gt;&amp;nbsp;which includes the SAS code to create it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned by others, you can use the VECTOR statement if arrows are essential.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 12:58:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536459#M17820</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-02-18T12:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536519#M17821</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;This code works but this is based on data. I'd like to draw the graph with percentiles (P5 P10 P20 P30 P40 P50). Is it possible to do that?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 15:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536519#M17821</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-02-18T15:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536550#M17822</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;again,&lt;/P&gt;
&lt;P&gt;I calculated percentiles in excel and applied your code on the new file. Here is the graph. Do you think there is a way to connect the arrows. There is some space between arrows?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot34.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27270i5E4882D63FD453F8/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot34.png" alt="SGPlot34.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 19:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536550#M17822</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-02-18T19:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536709#M17823</link>
      <description>&lt;P&gt;Add one more statement,&lt;/P&gt;
&lt;P&gt;Or try VECTOR .&lt;/P&gt;
&lt;P&gt;Or try HIGHLOW .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sgplot&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;series  x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;
scatter x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; markerattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;symbol&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;trianglefilled size&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;dropline&lt;/SPAN&gt; x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; dropto&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x lineattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

scatter x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x1 y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; markerattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;symbol&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;triangleleftfilled size&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;dropline&lt;/SPAN&gt; x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; dropto&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;y lineattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 12:49:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536709#M17823</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-19T12:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536809#M17824</link>
      <description>&lt;P&gt;Thank you so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;. Here is how the new graph looks.. The arrows look good now, the only thing is x and y values' labels. As seen in the first post the y and x values are '5th', '10th' etc. but in my graph I have the exact values. If there is no way to change, then I will just provide this graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot50.png" style="width: 397px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27289i486F7D198ADDDA16/image-dimensions/397x298?v=v2" width="397" height="298" role="button" title="SGPlot50.png" alt="SGPlot50.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 16:20:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/536809#M17824</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-02-19T16:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/537029#M17825</link>
      <description>&lt;P&gt;Using option 'values' of xaxis. to display 5th instead of 100 .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sgplot&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
scatter x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; markerattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;symbol&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;trianglefilled size&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;dropline&lt;/SPAN&gt; x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; dropto&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x lineattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

scatter x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;x1 y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; markerattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;symbol&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;triangleleftfilled size&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;10&lt;/SPAN&gt; color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;dropline&lt;/SPAN&gt; x&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;weight&lt;/SPAN&gt; y&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;height&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt; dropto&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;y lineattrs&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;color&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;black&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;xaxis values=('5th' '10th' ............ ) ;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 10:31:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/537029#M17825</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-20T10:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/537127#M17826</link>
      <description>&lt;P&gt;This gets you a bit closer, but not all the way there. For the final 'finish' you can create the labels needed for your graph using a format to map your values to a specific label. Not sure why it's not working here but it's pretty straightforward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*create sample data;
data demo;
do i=1 to 100;
paper_scores = rand('normal', 40, 5);
online_scores = rand('normal', 60, 8);
output;
end;
run;

*get percentiles for graph;
ods select none;
proc means data=demo min p10 p20 p30 p40 p50 p60 p70 p80 p90 max stackods;
var paper_scores online_scores;
ods output summary = ss;
run;
ods select all;


*transpose to a different structure to support graphing;
proc transpose data=ss out=ss_long;
id variable;
run;


data ss_long;
set ss_long;
*clean up statistics names;
name = substr(_name_, 1, length(_name_) - 4);

*rename values;
if _label_ = 'Maximum' then percentile = 100;
else if _label_ = 'Minimum' then percentile = 0;
else percentile = input(compress(_label_, , 'kd'), 8.);

*calculate arrow start and end for each plot;

*You probably don't need this step but it just makes the next steps easier;
arrow_up_start_x = paper_scores;
arrow_up_start_y = 0;
arrow_up_end_x = paper_scores;
arrow_up_end_y = online_scores;

arrow_left_start_x = paper_scores;
arrow_left_start_y = online_scores;
arrow_left_end_x = 0;
arrow_left_end_y = online_scores;
run;


proc sort data=ss_long;
by percentile name;
run;

*create formats to customize labels;
data x_format;
set ss_long;
start = paper_scores;
label = percentile;
type = 'N';
fmtname = 'xaxis_fmt';
run;

data y_format;
set ss_long;
start = online_scores;
label = percentile;
type = 'N';
fmtname = 'yaxis_fmt';
run;

proc format cntlin=x_Format;
run;

proc format cntlin=y_Format;
run;

*create graph;
proc sgplot data=ss_long noautolegend;
spline x=paper_scores y = online_scores;
vector x=arrow_up_end_x y=arrow_up_end_y / xorigin = arrow_up_start_x yorigin = arrow_up_start_y;
vector x=arrow_left_end_x y=arrow_left_end_y / xorigin = arrow_left_start_x yorigin = arrow_left_start_y;

xaxis label = 'Paper Scores'  valuesformat = xaxis_fmt. min=0;
yaxis label = 'Online Scores' valuesformat = yaxis_fmt.  min=0;
run;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Feb 2019 17:00:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/537127#M17826</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-20T17:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: matching percentiles on the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/538055#M17833</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Sun, 24 Feb 2019 06:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/matching-percentiles-on-the-graph/m-p/538055#M17833</guid>
      <dc:creator>dustychair</dc:creator>
      <dc:date>2019-02-24T06:11:36Z</dc:date>
    </item>
  </channel>
</rss>

