BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vem
Calcite | Level 5 vem
Calcite | Level 5
Hi,
I am trying to do transpose in sas enterprise guide.
I have the data
Name case_status Case_desc count_casedesc
Cynthua 04 Obhealth 1
Cynthua 05 Diab 1
Linda 04 Bp 1
Linda 04 Diab 1
I am expecting the result as
Name Case_status obhealth Diab Bp Total
Cynthua 04 1 1
Cynthua 05 1 1
Linda 04 1 1 2


1 ACCEPTED SOLUTION

Accepted Solutions
RahulG
Barite | Level 11

You cannot directly use transpose task in EG to solve your problem as you also need Total count  column which is not coming in your input dataset.

 

Below mentioned is how to Transpose using SAS EG but again Total would not come.

Transpose Task
Set the following variables
Transpose Variable = count_casedesc
Group Analysis variable = NAME case_status
New column Name = CASE_DESC

 

 

How to get total, I have demonstrated using Base SAS code, you need to do it in EG using sql query and append task 

 

DATA HAVE;
INPUT Name $ case_status $ Case_desc $ count_casedesc;
DATALINES;
Cynthua 04 Obhealth 1
Cynthua 04 Diab 1
Cynthua 04 Bp 1
Cynthua 05 Diab 1
Linda 04 Bp 1
Linda 04 Diab 1
;
PROC SQL;
CREATE TABLE TOTAL AS
SELECT Name , case_status , "TOTAL" AS Case_desc , SUM(count_casedesc) AS count_casedesc
FROM HAVE
GROUP BY Name , case_status ;
QUIT;
DATA HAVE1;
SET HAVE TOTAL;
RUN;
PROC SORT DATA=HAVE1;
BY NAME CASE_STATUS;
RUN;
PROC TRANSPOSE DATA=HAVE1 OUT=WANT(DROP=_NAME_) ;
BY NAME case_status ;
ID CASE_DESC;
VAR count_casedesc ;
RUN;

 

View solution in original post

4 REPLIES 4
RahulG
Barite | Level 11

You cannot directly use transpose task in EG to solve your problem as you also need Total count  column which is not coming in your input dataset.

 

Below mentioned is how to Transpose using SAS EG but again Total would not come.

Transpose Task
Set the following variables
Transpose Variable = count_casedesc
Group Analysis variable = NAME case_status
New column Name = CASE_DESC

 

 

How to get total, I have demonstrated using Base SAS code, you need to do it in EG using sql query and append task 

 

DATA HAVE;
INPUT Name $ case_status $ Case_desc $ count_casedesc;
DATALINES;
Cynthua 04 Obhealth 1
Cynthua 04 Diab 1
Cynthua 04 Bp 1
Cynthua 05 Diab 1
Linda 04 Bp 1
Linda 04 Diab 1
;
PROC SQL;
CREATE TABLE TOTAL AS
SELECT Name , case_status , "TOTAL" AS Case_desc , SUM(count_casedesc) AS count_casedesc
FROM HAVE
GROUP BY Name , case_status ;
QUIT;
DATA HAVE1;
SET HAVE TOTAL;
RUN;
PROC SORT DATA=HAVE1;
BY NAME CASE_STATUS;
RUN;
PROC TRANSPOSE DATA=HAVE1 OUT=WANT(DROP=_NAME_) ;
BY NAME case_status ;
ID CASE_DESC;
VAR count_casedesc ;
RUN;

 

vem
Calcite | Level 5 vem
Calcite | Level 5
Hi,
I am trying to do transpose in sas enterprise guide.
I have the data
Name case_status Case_desc count_casedesc
Cynthua 04 Obhealth 1
Cynthua 05 Diab 1
Linda 04 Bp 1
Linda 04 Diab 1
I am expecting the result as
Name Case_status obhealth Diab Bp Total
Cynthua 04 1 1
Cynthua 05 1 1
Linda 04 1 1 2
ballardw
Super User

That looks an awful lot like a Report, especially with the "Total" you require.

If this is to be a dataset what will you do next with it? If the only thing is to print or display it then look at report tasks.

Ksharp
Super User
DATA HAVE;
INPUT Name $ case_status $ Case_desc $ count_casedesc;
DATALINES;
Cynthua 04 Obhealth 1
Cynthua 05 Diab 1
Linda 04 Bp 1
Linda 04 Diab 1
;
run;


proc transpose data=have out=temp(drop=_:);
by name case_status;
id case_desc;
var count_casedesc;
run;
data want;
 set temp;
 total=sum(of _numeric_);
run;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 4 replies
  • 6993 views
  • 5 likes
  • 4 in conversation