<?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 create a Parallel Coordinates Plot in SGPLOT (or GTL)? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/326743#M11476</link>
    <description>&lt;P&gt;I am hoping to create something similar to the Parallel Coordinates Plot from the Data Viz Catalogue (&lt;A href="http://www.datavizcatalogue.com/methods/parallel_coordinates.html" target="_blank"&gt;http://www.datavizcatalogue.com/methods/parallel_coordinates.html&lt;/A&gt;). The best solution I've found so far is from Prashant Hebbar's SGF 2012 paper (&lt;A href="https://support.sas.com/resources/papers/proceedings12/267-2012.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings12/267-2012.pdf&lt;/A&gt;) in which he converts each y variable to a percent and then uses a combination of vector, refline, and scatter statements to draw the multiple axes over the top of the series plot. While it works, this approach seems a little bit tedious. Is anybody aware of a more straightforward solution? Or, is this perhaps as simple as it gets?&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jan 2017 15:29:17 GMT</pubDate>
    <dc:creator>ShaneRosanbalm</dc:creator>
    <dc:date>2017-01-23T15:29:17Z</dc:date>
    <item>
      <title>How to create a Parallel Coordinates Plot in SGPLOT (or GTL)?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/326743#M11476</link>
      <description>&lt;P&gt;I am hoping to create something similar to the Parallel Coordinates Plot from the Data Viz Catalogue (&lt;A href="http://www.datavizcatalogue.com/methods/parallel_coordinates.html" target="_blank"&gt;http://www.datavizcatalogue.com/methods/parallel_coordinates.html&lt;/A&gt;). The best solution I've found so far is from Prashant Hebbar's SGF 2012 paper (&lt;A href="https://support.sas.com/resources/papers/proceedings12/267-2012.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings12/267-2012.pdf&lt;/A&gt;) in which he converts each y variable to a percent and then uses a combination of vector, refline, and scatter statements to draw the multiple axes over the top of the series plot. While it works, this approach seems a little bit tedious. Is anybody aware of a more straightforward solution? Or, is this perhaps as simple as it gets?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 15:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/326743#M11476</guid>
      <dc:creator>ShaneRosanbalm</dc:creator>
      <dc:date>2017-01-23T15:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a Parallel Coordinates Plot in SGPLOT (or GTL)?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/326766#M11477</link>
      <description>&lt;P&gt;If you are asking whether there is now a built-in statement for parallel coordinate plots, the answer&amp;nbsp;is no.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, there is a much easier way to standardize all numeric variables into [0,1]. You can use PROC STDIZE to transform all variables in a single call:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc stdize data=sashelp.cars(drop=_CHARACTER_) method=range out=cars;
run;

/* view max/min for the transformed data */
proc means data=cars;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Jan 2017 16:09:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/326766#M11477</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-01-23T16:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a Parallel Coordinates Plot in SGPLOT (or GTL)?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/327054#M11491</link>
      <description>PROC STDIZE does tidy things up a bit. Thanks for the suggestion. That said, I will probably poke around a bit and see if I can't find a way to trick SGPLOT (or SGPANEL or GTL) into producing a slightly cleaner looking plot.</description>
      <pubDate>Tue, 24 Jan 2017 14:23:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-create-a-Parallel-Coordinates-Plot-in-SGPLOT-or-GTL/m-p/327054#M11491</guid>
      <dc:creator>ShaneRosanbalm</dc:creator>
      <dc:date>2017-01-24T14:23:14Z</dc:date>
    </item>
  </channel>
</rss>

