<?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 Controlling tickvales on log scale in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/522834#M4522</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can some one help me if there are any options to control tickvales on a log scale while we use proc template or proc sgplot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I go with log base = 10, then scale will have a tick values at 1, 10, 100, 1000, 10000..... Can we control these tick vales to show only fewer values then the default values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rowaxisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=( type = log logopts=( base = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;))&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Dec 2018 12:49:52 GMT</pubDate>
    <dc:creator>MNV</dc:creator>
    <dc:date>2018-12-20T12:49:52Z</dc:date>
    <item>
      <title>Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/522834#M4522</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can some one help me if there are any options to control tickvales on a log scale while we use proc template or proc sgplot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I go with log base = 10, then scale will have a tick values at 1, 10, 100, 1000, 10000..... Can we control these tick vales to show only fewer values then the default values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rowaxisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=( type = log logopts=( base = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;))&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 12:49:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/522834#M4522</guid>
      <dc:creator>MNV</dc:creator>
      <dc:date>2018-12-20T12:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/522871#M4534</link>
      <description>&lt;P&gt;Sure. IN SGPLOT you can use the VALUES= option to specify the values for ticks. It works for linear and for logarithmic axes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Have;
call streaminit(12345);
do i = 1 to 1000;
   t = abs(rand("normal", 0, 5));
   x = exp(t);
   y = rand("Normal");
   if abs(x)&amp;gt;1 then output;
end;
run;

proc sgplot data=Have;
scatter x=x y=y;
xaxis type=log logbase=10
      values=(10 100 500 1000 10000 50000);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can do the same thing in GTL, but the option is called TICKVALUELIST= and it is used like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;xaxisopts=(type=log logopts=(tickvaluelist=(10 100 500 1000 10000 50000)&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 14:28:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/522871#M4534</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-12-20T14:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523021#M4545</link>
      <description>&lt;P&gt;Thank you so much for your guidance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you also suggest me on the following..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once we have the desired tick values, I want to align Y1 values with Y2 axis values with a formula of 0.2 on Y2 corresponds to 50 on Y1.&lt;/P&gt;&lt;P&gt;Is there a way to standardize/align the Y1 &amp;amp; Y2 axis scales in log view? I tried in linear view by giving&amp;nbsp;equal number of tick values on Y1 &amp;amp; Y2 axis. This gave me the tick values placement on corresponding values i.e&amp;nbsp;50 of Y1 to 0.2 on Y2.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 08:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523021#M4545</guid>
      <dc:creator>MNV</dc:creator>
      <dc:date>2018-12-21T08:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523033#M4546</link>
      <description>&lt;P&gt;Your question does not make sense to me. The Y1 and Y2 values are for different variables. Do you have a second Y variable? You need two values to determine a linear scale, but you've only told me that 50 &amp;lt;--&amp;gt; 0.2. Perhaps the zero values&amp;nbsp;are the same?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Although I don't fully understand your question, look at the YAXIS and Y2AXIS statements, which enable you to create values for both axes. You&amp;nbsp;might need to use the MIN= and MAX= options to ensure that the axes are compatible and that Y1=50 aligns with&amp;nbsp;Y2=0.2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Have;
call streaminit(12345);
do i = 1 to 1000;
   t = abs(rand("normal", 0, 5));
   x = exp(t);
   y = rand("Normal", 0, 50);
   y2 = (0.2 / 50)*y;
   if abs(x)&amp;gt;1 then output;
end;
run;

proc sgplot data=Have;
scatter x=x y=y;
scatter x=x y=y2 / y2axis;
xaxis type=log logbase=10
      values=(10 100 500 1000 10000 50000);
yaxis values=(-150 to 150 by 50) valueshint grid;
y2axis values=(-0.40 to 0.40 by 0.2) valueshint grid;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have more questions, I suggest you post data.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 10:42:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523033#M4546</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-12-21T10:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523127#M4554</link>
      <description>&lt;P&gt;Basically, I need to present two different parameters data on Y1 &amp;amp; y2 respectively with a common X axis (an individual concentration plot). Y1 values has a range from 0.1 to 60000 &amp;amp; Y2 has 0.01 to 600. we need to present this in semi-log view &amp;amp; has a note for programmer from stats - "Scale axis such that 0.2 on Y2 axis corresponds to 50 on Y1-axis".&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 17:41:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523127#M4554</guid>
      <dc:creator>MNV</dc:creator>
      <dc:date>2018-12-21T17:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523137#M4555</link>
      <description>&lt;P&gt;Great. Then you should be able to modify the code I posted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 18:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523137#M4555</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-12-21T18:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523391#M4606</link>
      <description>&lt;P&gt;I could see that, Y2 values were imputed or calculated in the above code - y2 = (0.2 / 50)*y;&lt;BR /&gt;However in reality, we have two separate variables Y1 &amp;amp; Y2 has the data which is independent in nature. In such a scenario, I am still not able to fix the issue.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 12:56:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523391#M4606</guid>
      <dc:creator>MNV</dc:creator>
      <dc:date>2018-12-24T12:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523403#M4611</link>
      <description>&lt;P&gt;Look again at my previous comment&amp;nbsp;in which I wrote:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;look at the YAXIS and Y2AXIS statements, which enable you to create values for both axes. You&amp;nbsp;might need to use the MIN= and MAX= options to ensure that the axes are compatible and that Y1=50 aligns with&amp;nbsp;Y2=0.2."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Two points determine a line, so to align the axes, set the MIN= and MAX= options on both axes to be compatible on the linear scale that you want. Then, if necessary, make sure the number of tick marks is the same on both axes. This will ensure that the scales and tick marks are aligned.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As always, if you&amp;nbsp;provide data and code, we can provide more specific answers.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Dec 2018 15:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523403#M4611</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-12-24T15:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523451#M4623</link>
      <description>&lt;P&gt;Hello, I have following test data to check..Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;delete&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; = work._all_;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; test;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;INFILE&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; DATALINES;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;INPUT&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; subjet $ X Y1 Y2;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;DATALINES4&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 -11 . 12.5&lt;/P&gt;&lt;P&gt;1 -5 . 50.34&lt;/P&gt;&lt;P&gt;1 1 0.1 .&lt;/P&gt;&lt;P&gt;1 2 0.1 10.1&lt;/P&gt;&lt;P&gt;1 15 6450.2 0.01&lt;/P&gt;&lt;P&gt;1 28 22768.87 0.01&lt;/P&gt;&lt;P&gt;1 67 . 136&lt;/P&gt;&lt;P&gt;1 100 13078 36.12&lt;/P&gt;&lt;P&gt;1 257 4651 10&lt;/P&gt;&lt;P&gt;1 301 0.1 .&lt;/P&gt;&lt;P&gt;1 358 . 0.01&lt;/P&gt;&lt;P&gt;;;;;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;template&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;define&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;statgraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; plot;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;begingraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;layout&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;datapanel&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;classvars&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(subjet) / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;columns&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rows&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;headerlabelattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(color=black weight=bold) &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;rowaxisopts&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(type = log logopts=(base= &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; viewmin = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; viewmax = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; TICKVALUELIST=(&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1000&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10000&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; ) )) &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;row2axisopts= (type = log logopts=(base= &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; viewmin = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.01&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; viewmax = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; TICKVALUELIST=(&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.01&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1000&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;10000&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;)));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;layout&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;prototype&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; /;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;SeriesPlot&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;X&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=x &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=y1/ &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;group&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=dose &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;display&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=all &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;name&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'y1'&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lineattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(color=black) &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;markerattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(symbol=squarefilled color=black);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;SeriesPlot&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;X&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=x &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Y&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=y2 / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;group&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=dose &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;yaxis&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=y2 &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;display&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=all &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;name&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'y2'&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lineattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(color=black pattern=SHORTDASH) &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;markerattrs&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=(symbol=circle color=black); &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endlayout&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;sidebar&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; / &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;align&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=bottom;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;discretelegend&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="2"&gt;'y1'&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="2"&gt;'y2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; / ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endsidebar&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endlayout&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;endgraph&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sgrender&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=test &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;template&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=plot;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2018 02:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523451#M4623</guid>
      <dc:creator>MNV</dc:creator>
      <dc:date>2018-12-25T02:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Controlling tickvales on log scale</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523458#M4624</link>
      <description>&lt;P&gt;Looks good to me.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2018 12:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Controlling-tickvales-on-log-scale/m-p/523458#M4624</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-12-25T12:05:45Z</dc:date>
    </item>
  </channel>
</rss>

