BookmarkSubscribeRSS Feed
jkanters
Fluorite | Level 6

I have a dataset with 4 variables

ptid         id

loghz      y

sequence x

logs        z

the value of z is spaced in the interval from 0 to 1;

I made a dataset grided by g3grid, which works perfectly.

I want now to plot for each id (ptid) a 3D plot with the same z contour levels (logs). However in some of my graps, proc gcontour overrules my clevels. It is because for the specific id (ptid) the data may not contain values in some of the range. But I dont care. Then proc gcontour should simply plot with the clevels I have chosen, if no data fit then it should plot no contours at all. How can I stop proc contour trying to be intelligent and let me decide the clevels.

proc gcontour data=grided; by ptid;

   plot loghz*sequence=logs/

       levels= 0.2 0.4 0.6 0.8

    clevels=white red orange yellow green blue black

    vaxis=axis1

    haxis=axis2

    ;

run;

quit;

2 REPLIES 2
GraphGuy
Meteorite | Level 14

I'm not too familiar with Proc Gcontour, and what its limitations might be ... but if you're using device=activex (or device=java), try it with device=png and see if it has different functionality.

 

DanH_sas
SAS Super FREQ

Try this and see what you get:

 

proc template;
  define statgraph contourplotparm;    
    begingraph;
      entrytitle "My Contour";
      layout overlay / 
          xaxisopts=(offsetmin=0 offsetmax=0 
                     linearopts=(thresholdmin=0 thresholdmax=0)) 
          yaxisopts=(offsetmin=0 offsetmax=0 
                     linearopts=(thresholdmin=0 thresholdmax=0));   
          contourplotparm x=sequence y=loghz z=logs / contourtype=fill 
                        levels=(0.2 0.4 0.6 0.8) name='Contour' 
colormodel=(white red orange yellow green blue black); continuouslegend 'Contour' / title="My Levels"; endlayout; endgraph; end; run; proc sgrender data=grided template=contourplotparm; by ptid; run;

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 803 views
  • 0 likes
  • 3 in conversation