Tag: GPLOT

Finding patterns in big data with SAS/GRAPH

When working with “big data” you usually have too many points to view in a plot, and end up subsetting or summarizing the data. But now, in SAS 9.3, you have an alternative! For example, the following scatter plot of 10,000+ points is just a visual “b…

PROC GPLOT options: AUTOHREF and AUTOVREF

Use the AUTOHREF and AUTOVREF options on the PLOT statement of PROC GPLOT to draw reference lines at all major tickmarks. Create an annotate data to draw thicker reference lines at the desired tickmarks.goptions reset=all;/* Create sample data */data …

Harizontal High-Low Plot

/* Set graphics options */goptions reset=all cback=white border;/* Set system options */data a;input TEST $8. BREAKS;cards;Cold 5Cold 12Cold 14Cold 22Cold 52Heat 20Heat 25Heat 10Heat 22Heat 47Gases 12Gases …