<?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: radar using GTL or proc sgplot ? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960046#M25297</link>
    <description>&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2013/11/27/is-there-a-car-on-your-radar/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2013/11/27/is-there-a-car-on-your-radar/&lt;/A&gt;</description>
    <pubDate>Mon, 24 Feb 2025 02:19:55 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2025-02-24T02:19:55Z</dc:date>
    <item>
      <title>radar using GTL or proc sgplot ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960025#M25289</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can radars be created with proc sgplot or GTL using SAS 9.4 or do we have to use the old procedure proc gradar?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2025 17:09:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960025#M25289</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2025-02-23T17:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: radar using GTL or proc sgplot ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960030#M25290</link>
      <description>&lt;P&gt;There's not a RADAR statement available in SGPLOT.&amp;nbsp; You could technically build one from primitive parts -- here just showing circles and polygons, but you could enhance by adding labeled points (using the SCATTER statement) and vertical / horizontal lines using, e.g., the VECTOR statement.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data shapes;
* cirles ;
x=20;
y=20;
do i=1 to 5;
	size=i*15;
	output;
end;
* polygons ;
call missing(of x, y, size);
id=1; color=1;
px=20; py=20; output;
px=-10; py=40; output;
px=20; py=30; output;
px=50; py=70; output;
px=30; py=-20; output;
px=20; py=20; output;

id=2; color=2;
px=20; py=20; output;
px=-50; py=10; output;
px=-10; py=20; output;
px=40; py=30; output;
px=70; py=-50; output;
px=20; py=20; output;
run;

proc sgplot data=shapes noautolegend;
bubble x=x y=y size=size / absscale nofill;
polygon x=px y=py id=id / 
	colorresponse=color colormodel=(blue red) 
	outline fill transparency=0.4;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="quickbluefish_0-1740336321097.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104872i7B3998E6C5D03285/image-size/medium?v=v2&amp;amp;px=400" role="button" title="quickbluefish_0-1740336321097.png" alt="quickbluefish_0-1740336321097.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;However, whether the amount of effort it will take to get something better than you could with GRADAR (if that still exists) is worth it is up to you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2025 18:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960030#M25290</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-02-23T18:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: radar using GTL or proc sgplot ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960046#M25297</link>
      <description>&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2013/11/27/is-there-a-car-on-your-radar/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2013/11/27/is-there-a-car-on-your-radar/&lt;/A&gt;</description>
      <pubDate>Mon, 24 Feb 2025 02:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960046#M25297</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-24T02:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: radar using GTL or proc sgplot ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960047#M25298</link>
      <description>Somehow I've never seen the ASPECT option in SGPLOT / SGPANEL - that is really good to know.</description>
      <pubDate>Mon, 24 Feb 2025 02:30:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960047#M25298</guid>
      <dc:creator>quickbluefish</dc:creator>
      <dc:date>2025-02-24T02:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: radar using GTL or proc sgplot ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960061#M25299</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is about &lt;STRONG&gt;radar charts in Visual Analytics&lt;/STRONG&gt; !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Google search &lt;BR /&gt;+"radar chart" +"custom graph" site:blogs.sas.com&lt;BR /&gt;brings you to :&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/sgf/2023/10/19/how-to-draw-a-radar-chart-in-sas-visual-analytics-using-a-custom-graph-part-i/" target="_blank"&gt;How to draw a radar chart in SAS® Visual Analytics using a custom graph – Part I - SAS Users&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://blogs.sas.com/content/sgf/2023/10/23/how-to-draw-a-radar-chart-in-sas-visual-analytics-using-a-custom-graph-part-ii/" target="_blank"&gt;How to draw a radar chart in SAS® Visual Analytics using a custom graph – Part II - SAS Users&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;See also --&amp;gt; Visual Analytics Custom Graph Examples&lt;A href="https://github.com/sassoftware/va-custom-graphs" target="_blank"&gt;&lt;BR /&gt;https://github.com/sassoftware/va-custom-graphs&lt;/A&gt;&lt;BR /&gt;(I believe there's a radar chart object ... you can download the *.JSON file and import in your environment to make it available to you and your peers)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For more information on &lt;STRONG&gt;custom graph objects / graph templates / custom graph builder&lt;/STRONG&gt;, you can do this Google search:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;+"graph builder" +"custom graph" site:communities.sas.com&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Ciao, Koen&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 09:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/radar-using-GTL-or-proc-sgplot/m-p/960061#M25299</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2025-02-24T09:05:15Z</dc:date>
    </item>
  </channel>
</rss>

