<?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 getting 3d plot right in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282114#M4735</link>
    <description>&lt;P&gt;I am trying a 3d plot using&amp;nbsp;proc g3grid and&amp;nbsp;proc g3d.&lt;/P&gt;
&lt;P&gt;But it doesn't seem to be giving the information the way i expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The g3grid seems to be modified the original values(maybe standardize or something). How can i get the same graph using original values in axis? I tried using noscale option, but that seems to have no effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also the x axis values seem to be changing not horizontally but inside the graph(which should be for months).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to similar scale as g3d procedure, but graph as smooth as splines.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12719i6D52CC245A8F56E3/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="3d_splines.jpg" title="3d_splines.jpg" /&gt;</description>
    <pubDate>Tue, 05 Jul 2016 10:36:31 GMT</pubDate>
    <dc:creator>munitech4u</dc:creator>
    <dc:date>2016-07-05T10:36:31Z</dc:date>
    <item>
      <title>getting 3d plot right</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282114#M4735</link>
      <description>&lt;P&gt;I am trying a 3d plot using&amp;nbsp;proc g3grid and&amp;nbsp;proc g3d.&lt;/P&gt;
&lt;P&gt;But it doesn't seem to be giving the information the way i expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The g3grid seems to be modified the original values(maybe standardize or something). How can i get the same graph using original values in axis? I tried using noscale option, but that seems to have no effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also the x axis values seem to be changing not horizontally but inside the graph(which should be for months).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to similar scale as g3d procedure, but graph as smooth as splines.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12719i6D52CC245A8F56E3/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="3d_splines.jpg" title="3d_splines.jpg" /&gt;</description>
      <pubDate>Tue, 05 Jul 2016 10:36:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282114#M4735</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-07-05T10:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: getting 3d plot right</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282270#M4741</link>
      <description>&lt;P&gt;It helps to post the code you used, some data in the form of a datastep and a bit more detailed description of how the output doesn't match your expectations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;G3GRID does do interpolation so it is possible that some of the results for x,y pairs without data in the original set may result in a Z value a bit outside of the original data range. Also, from the online documentation for G3GRID:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; by default, the interpolation is performed after both (horizontal) variables are similarly scaled, because the interpolation methods assume that the&amp;nbsp;scales of &lt;SPAN class="emph"&gt;x&lt;/SPAN&gt; and &lt;SPAN class="emph"&gt;y&lt;/SPAN&gt; are comparable.&lt;/P&gt;
&lt;P&gt;But that is only for the interpolation, the original X Y values are in the results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you use the SPLINE and SMOOTH= options in G3Grid?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2016 19:47:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282270#M4741</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-07-05T19:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: getting 3d plot right</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282361#M4745</link>
      <description>Here is the code I used:&lt;BR /&gt;&lt;BR /&gt;proc g3grid data=x out=x1;where cnt&amp;gt;100;&lt;BR /&gt;   grid months_since_last_had_video*tenure_by_account=event_rate/noscale spline ;&lt;BR /&gt;run;&lt;BR /&gt;proc g3d data=x ;&lt;BR /&gt;plot months_since_last_had_video*tenure_by_account=event_rate;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Now I want the scale to be remained original while splines are performed on data</description>
      <pubDate>Wed, 06 Jul 2016 07:58:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/getting-3d-plot-right/m-p/282361#M4745</guid>
      <dc:creator>munitech4u</dc:creator>
      <dc:date>2016-07-06T07:58:02Z</dc:date>
    </item>
  </channel>
</rss>

