A leading global CRO Systematically Reordering Axis in SAS Graph Brian Shen Web:
A leading global CRO SAS default ordering for Major axis tick values is sometimes not desirable for procedures like GPLOT, GCHART, etc., as examples provided. Reordering the major axis values often takes significant amount of time for programmers, especially for generating big number of graphs for different parameters, or for data changing on daily basis, like marketing data. Introduction
A leading global CRO SAS Default: Too Many (18) Tick Numbers
A leading global CRO SAS Default: Font Size Change causes order changed
A leading global CRO SAS Default: Tick values look strange
A leading global CRO SAS Default: Only non-negative order was generated for Data with negative values
A leading global CRO SAS Default: Plot shrinks into a line if “label =none” AXIS option is specified
A leading global CRO SAS Default: No plot generated for missing data WARNING: ALL VALUES MISSING or out of range for ( y * x ). Check to see if VAXIS= or HAXIS= list is incorrect.
A leading global CRO MATHEMATICAL LOGICS TO RECALCULATE AXIS ORDERING To resolve the issues mentioned above, new mathematical logics are presented to calculate axis order, using SAS macro languages (%ORDER). Seven major steps are included for the new ordering mechanisms. For more details, please refer to the macro.
A leading global CRO For Example: Min = - 301, Max = 401 Range = 702; Min = , Max = Range = ; Special case for range equal to 0: If Min = Max = 0, reset Min = - 0.5, Max = 0.5; If Min = Max and not equal to 0, extend Min/Max to half of their absolute value on both direction. For example, if Min=Max=50, Reset Min = 25, Max =75. STEP 1: Get the data RANGE either from the dataset variable or by user defined MIN or MAX.
A leading global CRO For Example: 702/10 = 70.2 RESULT1 = 70; /10 = RESULT1 = ; STEP 2: Divide range by 10 to get interim result, called RESULT1, if RESULT1 > 1, round it to single digit.
A leading global CRO For Example: 70 / 10 = 7 RESULT2 = 7, DIVIDER = 10; / = 1.1 RESULT2 = 1.1, DIVIDER = ; STEP 3: Divide RESULT1 by a DIVIDER to make the new result, called RESULT2, in a range between 0 to 10, and DIVIDER [10 n, n=must be integers], which must be exponents with base 10, like …, 0.01, 0.1, 1, 10, 100, …, etc.
A leading global CRO For Example: RESULT2 = 7 STEP1 = 10 RESULT2 = 1.1 STEP1 = 2.5 STEP 4: Get the initial step, called STEP1, based on the following logics: If. < RESULT2 < =2.5, STEP1 = 2.5; If 2.5 < RESULT2 < =6.2, STEP1 = 5; If 6.2 < RESULT2 < 10, STEP1 = 10;
A leading global CRO For Example: Step1 =10, divider= 10 STEP = 10 * 10 * 2 = 200; Step1 =2.5, divider= STEP = 2.5 * * 2 = STEP 5: Get the STEP for axis order by multiplying STEP1 by DIVIDER by 2, i.e., STEP = STEP1*DIVIDER*2. :
A leading global CRO For Example: Min = - 301, Max = 401 ORDER= -400 TO 600 by 200 Min = 0.001, Max = ORDER = to by STEP 6: Get the LOW and HIGH value for ORDER using the following formula: LOW = Floor(MIN/STEP)*STEP HIGH = Ceil(MAX/STEP)*STEP ORDER = LOW to HIGH by STEP
A leading global CRO STEP 7: If both Min and Max are non- negative or non-positive, the LOW and HIGH must both be non-negative or non- positive [Except for Min = Max = 0]. If Min and Max are in different signs, LOW and HIGH must also be in different signs.
A leading global CRO %order( Dsn = sashelp.cars, var = mpg_city, max = 50.7, order_name = y_order, valuelist_name = y_tickvaluelist) This call will use Min of MPG_CITY from dataset SASHELP.CARS and max = 50.7 to calculate axis order. %order(var = -0.7, max = 50.7); This call will use Min of -0.7 and max = 50.7 to calculate axis order. Sample Calls
A leading global CRO This is for GPLOT/GCHART/SGPLOT, etc. Y_ORDER: =10 to 60 by 10 Those three are designed for GTL Y_TICKVALUELIST: VIEWMIN: 10 VIEWMAX: 60 Macro Variables Generated for AXIS ordering
A leading global CRO For GPLOT, etc: AXIS1 Label = none order = (&y_order.) offset=(0, 3)pct; For GTL: yaxisopts=( linearopts =(viewmin = &viewmin viewmax=&viewmax tickvaluelist= (&y_tickvaluelist.))); Apply results for your graph programming:
A leading global CRO Min | Max GPLOT DEFAULT (Tick Numbers) GTL DEFAULT (Tick Numbers) %ORDER (Tick Numbers) Missing | Missing WARNING: ALL VALUES MISSING or out of range. No plot will be Generated WARNING: Y=Y is invalid. The option expects at least one non-missing value in the column. Graph is Generated with empty AXIS WARNING: ALL VALUES MISSING or out of range. Graph will be Generated with AXIS = 999 to 9999 by Can make revision to be consistent with GTL 0 | 0 0 to 0 by 0 (1) plot shrinks into a line Label = none is specified in AXIS statement 0 to 0 by 0 (1)-1 to 1 by 0.5 (5) 1 | 41 to 4 by 1 (4)1 to 4 by 0.5 (7)1 to 4 by 1 (4) 1.1 | 61 to 6 by 1 (6) 100 | to 700 by 100 (7) 777 | to 777 by 0 (1),777 to 777 by 0 (1)200 to 1200 by 200 (6) | to by (4)0 to by 5000 (5)-5000 to by 5000 (6) -1.36E-7 | 2.68E E-7 to 2.74E-7 by 0.5E-7 (10)-2E-7 to 3E-7 by 1E-7 (6) | to 0 by (18) to 0 by (5) Compared Result with SAS Default
A leading global CRO Compared Result with SAS Default
A leading global CRO Compared Result with SAS Default
A leading global CRO Compared Result with SAS Default
A leading global CRO Conclusion This macro significantly enhance SAS axis ordering mechanism, especially for procedures like GPLOT, GCHART. In generally cases, it will generate axis order better than SAS default for procedures like GPLOT/GCHART, and comparable or better than axis ordering mechanism in SAS9.3 STAT graph package and SAS9.3 GTL graph package.