<?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: How do I change y axis scale for one graph within proc ttest in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/587886#M28779</link>
    <description>&lt;P&gt;Hi Koen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having been through the help file online for PROC SGPLOT, I can't seem to find the plot I am after in the options, which is the one of the several produced with PROC TTEST that I attached as an image in my post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know which graph option that one would be within PROC SGPLOT? As I say, I'm a total SAS novice and just want to change the y axis scale from 0-9 to 0-10 of that one graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks again in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, Dilraj&lt;/P&gt;</description>
    <pubDate>Wed, 11 Sep 2019 14:28:30 GMT</pubDate>
    <dc:creator>u40694721</dc:creator>
    <dc:date>2019-09-11T14:28:30Z</dc:date>
    <item>
      <title>How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/586937#M28738</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am usually a Stata user, so forgive my novice status with SAS. I am using SAS On Demand for the analysis for a crossover study using an AB/BA design.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is relatively simple, namely:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;------------------------&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data trial;
length Drug1 $ 9;
length Drug2 $ 9;
input Patient Drug1 $ Drug2 $ Pain1 Pain2 @@;
datalines;


1 A B 7 1

2 B A 3 3

.......etc

64 B A 6 3


proc print data=trial;
run;


ods graphics on;

proc ttest data=trial plots=interval;
var Pain1 Pain2 / crossover= (Drug1 Drug2);
run;


ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One of the graphs from the output is for Profiles over Treatment for (Pain1, Pain2).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach this output and would like the y axis to go from 0-10 rather than 0-9 as SAS has done.&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="Graph y axis 0-9.png" style="width: 583px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32292i9CABD0E3B4993E81/image-size/large?v=v2&amp;amp;px=999" role="button" title="Graph y axis 0-9.png" alt="Graph y axis 0-9.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't seem to get ODS Graphics Editor to work, so was wondering if there was a simple piece of code for the one thing within one graph that I want to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 04:10:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/586937#M28738</guid>
      <dc:creator>u40694721</dc:creator>
      <dc:date>2019-09-07T04:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/587805#M28774</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Why don't you make the plot yourself with PROC SGPLOT (Statistical Graphics procedure)?&lt;/P&gt;
&lt;P&gt;Then you have full control.&lt;/P&gt;
&lt;P&gt;You won't even need the Graphic Template Language (GTL).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One&amp;nbsp;of the statements in your PROC SGPLOT would be:&lt;/P&gt;
&lt;P&gt;yaxis min=0 max=10 integer grid label='Response';&lt;/P&gt;
&lt;P&gt;OR&lt;/P&gt;
&lt;P&gt;YAXIS LABEL = 'Response' GRID VALUES = (0 TO 10 BY 1);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 12:12:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/587805#M28774</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-09-11T12:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/587886#M28779</link>
      <description>&lt;P&gt;Hi Koen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having been through the help file online for PROC SGPLOT, I can't seem to find the plot I am after in the options, which is the one of the several produced with PROC TTEST that I attached as an image in my post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know which graph option that one would be within PROC SGPLOT? As I say, I'm a total SAS novice and just want to change the y axis scale from 0-9 to 0-10 of that one graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks again in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards, Dilraj&lt;/P&gt;</description>
      <pubDate>Wed, 11 Sep 2019 14:28:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/587886#M28779</guid>
      <dc:creator>u40694721</dc:creator>
      <dc:date>2019-09-11T14:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588313#M28797</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I will answer you tomorrow.&lt;/P&gt;
&lt;P&gt;It will be a very long answer with lots of code as the template for showing that particular plot (named "ProfilesOverTrt") has to be changed!&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 16:26:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588313#M28797</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-09-12T16:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588337#M28799</link>
      <description>&lt;P&gt;Here we go!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Submit this program:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl" target="_blank"&gt;https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;, but first put an extra 2 statements:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods path show;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods trace on;&lt;/P&gt;
&lt;P&gt;just below the:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods graphics on;&amp;nbsp; statement.&lt;/P&gt;
&lt;P&gt;You will notice immediatly it's the same program as yours (but other data, ... full data!).&lt;/P&gt;
&lt;P&gt;Finish the program with the:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods trace off;&amp;nbsp; statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The plot you are interested in (named "ProfilesOverTrt") is the last but two output objects:&lt;/P&gt;
&lt;P&gt;Output Added:&lt;/P&gt;
&lt;P&gt;-------------&lt;/P&gt;
&lt;P&gt;Name: ProfilesOverTrt&lt;/P&gt;
&lt;P&gt;Label: Profiles over Treatment&lt;/P&gt;
&lt;P&gt;Template: Stat.TTest.Graphics.ProfilesOverTreatmentC&lt;/P&gt;
&lt;P&gt;Path: Ttest.PEF1_PEF2.ProfilesOverTrt&lt;/P&gt;
&lt;P&gt;-------------&lt;/P&gt;
&lt;P&gt;We can see the name of ALL the output objects (tables and graphs / plots) in the LOG-screen thanks to the ODS TRACE ON; statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will soon change the y-axis (from 100 to 400 by 100) to (from 50 to 450 by 50)!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's now have a look at the graphical template that was used to produce this particular original plot (in its current format):&lt;/P&gt;
&lt;P&gt;The template code (in GTL -&amp;gt; Graphical Template Language) will be published in the LOG-screen if you submit these statements:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options ls=&lt;STRONG&gt;200&lt;/STRONG&gt; nocenter;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;template&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;path sashelp.tmplmst;&lt;/P&gt;
&lt;P&gt;list &amp;nbsp;stat.ttest.Graphics / sort=path descending;&lt;/P&gt;
&lt;P&gt;source stat.ttest.Graphics.ProfilesOverTreatmentC;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Starting from these statements I will create the new plot with the altered Y-axis. The options we have to change are behind&lt;/P&gt;
&lt;P&gt;yaxisopts&lt;SPAN&gt;=&lt;/SPAN&gt; (layout statement).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the new code for the template:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options ls=200 nocenter;
 
proc template;
 path sashelp.tmplmst;
 source stat.ttest.Graphics.ProfilesOverTreatmentC;
run; 
 
 
proc template ;
define statgraph Stat.Ttest.Graphics.ProfilesOverTreatmentC;
   notes "Subject-profiles plot over treatment (crossover)";
   dynamic _Y _YMEAN _VARNAME1 _VARNAME2 _OBSVAR _TIPVAR _byline_ _bytitle_ _byfootnote_;
   BeginGraph;
      entrytitle "Profiles over Treatment for (" _VARNAME1 ", " _VARNAME2 ")";
      layout overlay / 
               xaxisopts=(type=discrete offsetmin=autocompress offsetmax=autocompress discreteopts=(tickvaluefitpolicy=rotate)) 
               yaxisopts=(label="Response" griddisplay=on 
                          linearopts=(    /* linear axis (not log axis)  */
                viewmin=0                 /* smallest value to display   */
                viewmax=600       tickvaluelist=(50 100 150 200 250 300 350 400 450)));
         seriesplot X=TREATMENT Y=_Y /     group=_OBSVAR index=SEQUENCE lineattrs=(thickness=1) 
                                           datatransparency=.5 rolename=(varname=_TIPVAR sn=SEQNAME) tip=(x varname y sn group);
         seriesplot X=TREATMENT Y=_YMEAN / group=SEQNAME index=SEQUENCE lineattrs=(thickness=1) 
                                           datatransparency=.5 rolename=(varname=_TIPVAR sn=SEQNAME) tip=(x varname y sn group) name="MiniSeries";
         seriesplot X=TREATMENT Y=_YMEAN / group=MEANSEQNAME index=SEQUENCE lineattrs=(thickness=3) rolename=(varname=_TIPVAR sn=SEQNAME) 
                                           tip=(x varname y sn) name="Means";
         discreteLegend "MiniSeries" "Means" / title="Treatment Sequence" across=1 location=outside halign=right valign=center;
      endlayout;
      if (_BYTITLE_)
         entrytitle _BYLINE_ / textattrs=GRAPHVALUETEXT;
      else
         if (_BYFOOTNOTE_)
            entryfootnote halign=left _BYLINE_;
         endif;
      endif;
   EndGraph;
end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then run&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl" target="_blank"&gt;https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;again.&lt;/P&gt;
&lt;P&gt;You will notice the new wanted Y-axis in the output (other scaling).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the LOG_screen you can also read in which item store the new template was put:&lt;/P&gt;
&lt;P&gt;NOTE: STATGRAPH 'Stat.Ttest.Graphics.ProfilesOverTreatmentC' has been saved to: SASUSER.TEMPLAT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to revert back to the original template??&lt;/P&gt;
&lt;P&gt;Type LIBNAME as a command -&amp;gt; this will tell you about the physical location of your SASUSER directory.&lt;/P&gt;
&lt;P&gt;Go to that directory in the windows explorer and delete the file "templat.sas7bitm".&lt;/P&gt;
&lt;P&gt;Important remark: There is a much more elegant way in SAS itself to delete this "templat.sas7bitm" item store but I don't remember how.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now submit again:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl" target="_blank"&gt;https://go.documentation.sas.com/api/docsets/statug/14.2/content/statug_code_tteex04.htm?locale=nl&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and you will see that everything is back to normal (the default template is used). The original Y-axis is back!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More info on&lt;/P&gt;
&lt;P&gt;ODS PATH SHOW&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_ods_sect006.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_ods_sect006.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More info on&lt;/P&gt;
&lt;P&gt;the yaxisopts= for axis layout&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_templt_a0000000061.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_templt_a0000000061.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 18:21:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588337#M28799</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-09-12T18:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588343#M28800</link>
      <description>&lt;P&gt;Two more notes:&lt;/P&gt;
&lt;P&gt;1. The double @@ in your input statement is doing nothing. Just drop it.&lt;/P&gt;
&lt;P&gt;2. If you don't like the offset (the margin or empty space between the first / last tick and the plot border) then no worry. There are also options to control that.&lt;/P&gt;
&lt;P&gt;Just ask.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 18:35:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588343#M28800</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-09-12T18:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588444#M28804</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To avoid the hassle with the SASUSER library and the deletion of your item-store ("templat.sas7bitm") in the Windows Explorer, you can also start your program with these statements:&lt;/P&gt;
&lt;P&gt;ODS PATH work.TEMPLATE (UPDATE)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sasuser.templat(read)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SASHELP.TMPLMST (READ);&lt;/P&gt;
&lt;P&gt;That way, templates are saved in your&amp;nbsp;WORK library and the WORK library (a simple directory on OS-level) is automatically killed when you close your SAS session.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2019 06:35:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588444#M28804</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-09-13T06:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I change y axis scale for one graph within proc ttest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588827#M28820</link>
      <description>&lt;P&gt;That is brilliant and worked absolutely perfectly!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for all your effort - it must have taken a really long time to write out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do appreciate it greatly and thanks for explaining it all so well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2019 12:42:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-do-I-change-y-axis-scale-for-one-graph-within-proc-ttest/m-p/588827#M28820</guid>
      <dc:creator>u40694721</dc:creator>
      <dc:date>2019-09-15T12:42:23Z</dc:date>
    </item>
  </channel>
</rss>

