<?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 how to change BASELINEINTERCEPT value to faciliate plotting on log scale: LAYOUT OVERLAY3D in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/how-to-change-BASELINEINTERCEPT-value-to-faciliate-plotting-on/m-p/546922#M17951</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dear SAS community:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;log gives the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The log axis cannot support zero or negative values for the axis from plot data or&lt;BR /&gt;due to default or assigned BASELINEINTERCEPT value. The axis type will be changed&lt;BR /&gt;to LINEAR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to plot z-axis on log scale. How can I fix this? None of my data points = 0.&amp;nbsp; Please see my embedded code for context.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _3dtest;
x=1; y=1; z=5; output;
x=2; y=1; z=3; output;
x=1; y=2; z=2; output;
x=2; y=2; z=1; output;
run;

proc print data=_3dtest;
run;

proc template;
define statgraph _test_3d;
begingraph;
entrytitle 'Testing z-axis on log scale';
layout overlay3d/cube=false 
zaxisopts=(griddisplay=on type=log
logopts=(base=10 tickintervalstyle=logexpand)) rotate=130;
bihistogram3dparm x=x y=y z=z;
endlayout;
endgraph;
end;
run;

proc sgrender template=_test_3d data=_3dtest; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 28 Mar 2019 15:40:43 GMT</pubDate>
    <dc:creator>Varrelle</dc:creator>
    <dc:date>2019-03-28T15:40:43Z</dc:date>
    <item>
      <title>how to change BASELINEINTERCEPT value to faciliate plotting on log scale: LAYOUT OVERLAY3D</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-change-BASELINEINTERCEPT-value-to-faciliate-plotting-on/m-p/546922#M17951</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dear SAS community:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;log gives the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The log axis cannot support zero or negative values for the axis from plot data or&lt;BR /&gt;due to default or assigned BASELINEINTERCEPT value. The axis type will be changed&lt;BR /&gt;to LINEAR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to plot z-axis on log scale. How can I fix this? None of my data points = 0.&amp;nbsp; Please see my embedded code for context.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _3dtest;
x=1; y=1; z=5; output;
x=2; y=1; z=3; output;
x=1; y=2; z=2; output;
x=2; y=2; z=1; output;
run;

proc print data=_3dtest;
run;

proc template;
define statgraph _test_3d;
begingraph;
entrytitle 'Testing z-axis on log scale';
layout overlay3d/cube=false 
zaxisopts=(griddisplay=on type=log
logopts=(base=10 tickintervalstyle=logexpand)) rotate=130;
bihistogram3dparm x=x y=y z=z;
endlayout;
endgraph;
end;
run;

proc sgrender template=_test_3d data=_3dtest; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Mar 2019 15:40:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-change-BASELINEINTERCEPT-value-to-faciliate-plotting-on/m-p/546922#M17951</guid>
      <dc:creator>Varrelle</dc:creator>
      <dc:date>2019-03-28T15:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to change BASELINEINTERCEPT value to faciliate plotting on log scale: LAYOUT OVERLAY3D</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-change-BASELINEINTERCEPT-value-to-faciliate-plotting-on/m-p/546929#M17952</link>
      <description>&lt;P&gt;I looked a bit closer at the documentation -- it appears that log axes are not permissible for this plot type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know of a work around?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 15:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-change-BASELINEINTERCEPT-value-to-faciliate-plotting-on/m-p/546929#M17952</guid>
      <dc:creator>Varrelle</dc:creator>
      <dc:date>2019-03-28T15:54:59Z</dc:date>
    </item>
  </channel>
</rss>

