<?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 proc gplot question axis scale by subject in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866632#M23613</link>
    <description>&lt;P&gt;Hi all:&lt;/P&gt;
&lt;P&gt;I have this question:&lt;/P&gt;
&lt;P&gt;-How to display x axis max scale by subject.?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you,&lt;/P&gt;
&lt;P&gt;purpleclothlady&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*axis1 order=(1 to 150 by 7) - max value of x axis will change by subject. eg
001 max is 150, 002 max is 60 , 003 max is 90*/ 
axis1 order=(1 to 150 by 7) label= (h=1.2 "Time(Day)" justify=center color=black) ;

axis2 offset=(1,1)
order=(0 to 100 by 10) label=( angle=90  h=1 color=blue ""result");

legend1 label=none value=(color=black height=1.2 "result")
position=(bottom center outside);

proc gplot data=rpt;
plot _result*day  /  legend=legend1
haxis=axis1
vaxis=axis2 ;
by subjid;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 27 Mar 2023 20:47:16 GMT</pubDate>
    <dc:creator>purpleclothlady</dc:creator>
    <dc:date>2023-03-27T20:47:16Z</dc:date>
    <item>
      <title>proc gplot dynamic x axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866633#M23612</link>
      <description>&lt;P&gt;Hi all:&lt;/P&gt;
&lt;P&gt;I have this question:&lt;/P&gt;
&lt;P&gt;-How to display x axis max scale by subject.?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you,&lt;/P&gt;
&lt;P&gt;purpleclothlady&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;/*axis1 order=(1 to 150 by 7) - max value of x axis will change by subject. eg
001 max is 150, 002 max is 60 , 003 max is 90*/ 
axis1 order=(1 to 150 by 7) label= (h=1.2 "Time(Day)" justify=center color=black) ;

axis2 offset=(1,1)
order=(0 to 100 by 10) label=( angle=90  h=1 color=blue ""result");

legend1 label=none value=(color=black height=1.2 "result")
position=(bottom center outside);

proc gplot data=rpt;
plot _result*day  /  legend=legend1
haxis=axis1
vaxis=axis2 ;
by subjid;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Mar 2023 20:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866633#M23612</guid>
      <dc:creator>purpleclothlady</dc:creator>
      <dc:date>2023-03-27T20:48:11Z</dc:date>
    </item>
    <item>
      <title>proc gplot question axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866632#M23613</link>
      <description>&lt;P&gt;Hi all:&lt;/P&gt;
&lt;P&gt;I have this question:&lt;/P&gt;
&lt;P&gt;-How to display x axis max scale by subject.?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you,&lt;/P&gt;
&lt;P&gt;purpleclothlady&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*axis1 order=(1 to 150 by 7) - max value of x axis will change by subject. eg
001 max is 150, 002 max is 60 , 003 max is 90*/ 
axis1 order=(1 to 150 by 7) label= (h=1.2 "Time(Day)" justify=center color=black) ;

axis2 offset=(1,1)
order=(0 to 100 by 10) label=( angle=90  h=1 color=blue ""result");

legend1 label=none value=(color=black height=1.2 "result")
position=(bottom center outside);

proc gplot data=rpt;
plot _result*day  /  legend=legend1
haxis=axis1
vaxis=axis2 ;
by subjid;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Mar 2023 20:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866632#M23613</guid>
      <dc:creator>purpleclothlady</dc:creator>
      <dc:date>2023-03-27T20:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot question axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866634#M23614</link>
      <description>&lt;P&gt;Please post questions only once, so all answers can be followed in one thread.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 20:54:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866634#M23614</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-03-27T20:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot dynamic x axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866635#M23615</link>
      <description>&lt;P&gt;Add the UNIFORM option the PROC GPLOT procedure statement. It should give you uniform axes by subject.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 20:58:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866635#M23615</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2023-03-27T20:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot question axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866658#M23616</link>
      <description>Hi Kurt: I mistakenly posted twice. thanks for reminder.</description>
      <pubDate>Tue, 28 Mar 2023 01:32:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866658#M23616</guid>
      <dc:creator>purpleclothlady</dc:creator>
      <dc:date>2023-03-28T01:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc gplot dynamic x axis scale by subject</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866659#M23617</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;
&lt;P&gt;The question is How to show Different x axis scale by subject.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;eg. subject 101&amp;nbsp; max x axis =100&lt;/P&gt;
&lt;P&gt;subject 102 max x axis=15&lt;/P&gt;
&lt;P&gt;subject 103 max x axis=40&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for helping,&lt;/P&gt;
&lt;P&gt;purple&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 01:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gplot-dynamic-x-axis-scale-by-subject/m-p/866659#M23617</guid>
      <dc:creator>purpleclothlady</dc:creator>
      <dc:date>2023-03-28T01:36:39Z</dc:date>
    </item>
  </channel>
</rss>

