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

Hi All,

I have two datasets : the first one, A, contains some variables, say X, Y, Z and

the second one, B, is a one row dataset containing summary values for some of

the variables of A e.g. SX, SY.

The summary functions used to build dataset B are not simple sums or means but

use some specific rules.

Can I, using PROC REPORT, generate a table displaying data from dataset A and, on

an additional row, the summary values extracted from dataset B ?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

No, but you could just run PROC REPORT against a view that does combine them.

data c / view=c ;

set a(in=in1) b(in=in2);

group = in2 ;

run;

proc report data=c ... ;

  column group .... ;

  define group / group noprint ;

  ...

run;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

No, but you could just run PROC REPORT against a view that does combine them.

data c / view=c ;

set a(in=in1) b(in=in2);

group = in2 ;

run;

proc report data=c ... ;

  column group .... ;

  define group / group noprint ;

  ...

run;

gamotte
Rhodochrosite | Level 12

OK I will try that

Thank You Tom  for your time and feedback.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 654 views
  • 0 likes
  • 2 in conversation