BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
tommyschyman
Calcite | Level 5

Hi,

I want to create a two-panel graph using proc sgpanel in SAS 9.3. The y-axis should be the same for the two panels, but I want one x-axis to be on a linear scale and the other on a logarithmic scale (expand). Can that be done in 9.3, or do you have any other way to create this type of graph?

Best regards,

Tommy

1 ACCEPTED SOLUTION

Accepted Solutions
djrisks
Barite | Level 11

Hi Tommy,

You can use GTL to do this, below is an example.

proc template;
  define statgraph plot_linearlog;
    begingraph;
      layout lattice / rows = 1 columns = 2;

        layout overlay / xaxisopts=(type = linear);
       scatterplot x = Horsepower y = MPG_City;
     endlayout;

        layout overlay / xaxisopts=(type = log logopts = (tickintervalstyle = logexpand));
       scatterplot x = Horsepower y = MPG_City;
     endlayout;

   endlayout;
endgraph;
  end;
run;

proc sgrender data = sashelp.cars template = plot_linearlog;
run;

SGRender5.png

View solution in original post

3 REPLIES 3
djrisks
Barite | Level 11

Hi Tommy,

You can use GTL to do this, below is an example.

proc template;
  define statgraph plot_linearlog;
    begingraph;
      layout lattice / rows = 1 columns = 2;

        layout overlay / xaxisopts=(type = linear);
       scatterplot x = Horsepower y = MPG_City;
     endlayout;

        layout overlay / xaxisopts=(type = log logopts = (tickintervalstyle = logexpand));
       scatterplot x = Horsepower y = MPG_City;
     endlayout;

   endlayout;
endgraph;
  end;
run;

proc sgrender data = sashelp.cars template = plot_linearlog;
run;

SGRender5.png

tommyschyman
Calcite | Level 5

Thanks djrisks, you opened up a new world for me when introducing GLT. A little bit tricky to sort it all out, but I could create the graph exactly as I wanted.

Tommy

djrisks
Barite | Level 11

That's fine Tommy / Chris. I agree GTL is a lot more powerful and tricky, and I'm glad you were able to figure it out and create the graph exactly as you wanted.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

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