<?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: Forest Plot; Axis value not showing up in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217755#M8114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using 9.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried type=linear and linearopts with tickvaluefitpolicy=none and it showed all values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I would like to do this in the log scale. I'm getting an error when trying this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;layout overlay / xaxisopts=(type=log&amp;nbsp; label='more effective--&amp;gt;'&lt;/P&gt;&lt;P&gt;logopts=(tickvaluelist=(.5 1 2 3 4 5 6 7) TickVlaueFitPolicy=none))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ), BASE, MINORTICKS, THRESHOLDMAX,&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; THRESHOLDMIN, TICKINTERVALSTYLE, VIEWMAX, VIEWMIN.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2015 19:54:34 GMT</pubDate>
    <dc:creator>dtchoi86</dc:creator>
    <dc:date>2015-04-08T19:54:34Z</dc:date>
    <item>
      <title>Forest Plot; Axis value not showing up</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217753#M8112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&amp;nbsp; I need help with creating a forest plot.&amp;nbsp; Here is a portion of the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;layout overlay / xaxisopts=(type=log&amp;nbsp; label='&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; &lt;/TD&gt;&lt;TD&gt;|--TRT More effective-&amp;gt;'&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;linearopts=(tickvaluepriority=true &lt;/P&gt;&lt;P&gt;tickvaluelist=(.5 1 2 3 4 5 6 7))logopts=(viewmin=.5 viewmax=7))&lt;/P&gt;&lt;P&gt;yaxisopts=(reverse=true display=none) walldisplay=none;&lt;/P&gt;&lt;P&gt;referenceline y=ref / lineattrs=(thickness=15 color=_color);&lt;/P&gt;&lt;P&gt;highlowplot y=subgroups low=ORlci high=ORuci / highcap=serif lowcap=serif;&lt;/P&gt;&lt;P&gt;scatterplot y=subgroups x=ORest / markerattrs=(symbol=diamondfilled);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=.5 / lineattrs=(pattern=shortdash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=2 / lineattrs=(pattern=shortdash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=3 / lineattrs=(pattern=shortdash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=4 / lineattrs=(pattern=shortdash);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=5 / lineattrs=(pattern=shortdash);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; referenceline x=6 / lineattrs=(pattern=shortdash);&lt;/P&gt;&lt;P&gt;endlayout;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't seem to get the .5 to show up on the xaxis.&amp;nbsp; Any suggestions/fix?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 18:43:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217753#M8112</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2015-04-08T18:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Forest Plot; Axis value not showing up</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217754#M8113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is hard to say without the resulting graph or the full program code with data.&amp;nbsp; Which release of SAS are you using?&lt;/P&gt;&lt;P&gt;You are using TYPE=log, but TickValueList is specified in the LinearOpts. It will not apply to Log axis.&amp;nbsp; You have to provide that in LogOpts.&amp;nbsp; Does it show all ticks if you set Type=Linear and LinearOpts=(TickVlaueFitPolicy=none)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 19:35:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217754#M8113</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-04-08T19:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Forest Plot; Axis value not showing up</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217755#M8114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using 9.3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried type=linear and linearopts with tickvaluefitpolicy=none and it showed all values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I would like to do this in the log scale. I'm getting an error when trying this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;layout overlay / xaxisopts=(type=log&amp;nbsp; label='more effective--&amp;gt;'&lt;/P&gt;&lt;P&gt;logopts=(tickvaluelist=(.5 1 2 3 4 5 6 7) TickVlaueFitPolicy=none))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ), BASE, MINORTICKS, THRESHOLDMAX,&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; THRESHOLDMIN, TICKINTERVALSTYLE, VIEWMAX, VIEWMIN.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 19:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217755#M8114</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2015-04-08T19:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Forest Plot; Axis value not showing up</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217756#M8115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is because there is no such option for the LOGOPTS (see doc).&amp;nbsp; Due to the unequal placement of the log tick values, some values are thinned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A work around would be to draw your own tick values.&amp;nbsp; To do this, you can use either a BLOCKPLOT or a SCATTER with MARKERCHARACTER to draw these values.&amp;nbsp; You will have to put the values you want in a data column and use this statement in another cell at the bottom and turn off the axis for the main cell. If this is important, you will have to experiment with this a bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternately, use the SGPLOT to draw the Forest Plot, and use SGAnnotate to place the ticks and tick values.&lt;/P&gt;&lt;P&gt;If you attach your full code with data, I could make some suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 20:27:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Forest-Plot-Axis-value-not-showing-up/m-p/217756#M8115</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-04-08T20:27:23Z</dc:date>
    </item>
  </channel>
</rss>

