BookmarkSubscribeRSS Feed
ShaneRosanbalm
Obsidian | Level 7

I am hoping to create something similar to the Parallel Coordinates Plot from the Data Viz Catalogue (http://www.datavizcatalogue.com/methods/parallel_coordinates.html). The best solution I've found so far is from Prashant Hebbar's SGF 2012 paper (https://support.sas.com/resources/papers/proceedings12/267-2012.pdf) 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?

2 REPLIES 2
Rick_SAS
SAS Super FREQ

If you are asking whether there is now a built-in statement for parallel coordinate plots, the answer is no. 

 

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:

 

proc stdize data=sashelp.cars(drop=_CHARACTER_) method=range out=cars;
run;

/* view max/min for the transformed data */
proc means data=cars;
run;
ShaneRosanbalm
Obsidian | Level 7
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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2085 views
  • 1 like
  • 2 in conversation