BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
VinnyR
Calcite | Level 5
152
1153  proc sort data=lbc;
1154    by subject foldername lbdtn lbdtc recordid;
1155  run;

NOTE: There were 399 observations read from the data set WORK.LBC.
NOTE: SAS sort was used.
NOTE: The data set WORK.LBC has 399 observations and 83 variables.
NOTE: Compressing data set WORK.LBC decreased size by 86.67 percent.
      Compressed is 2 pages; un-compressed would require 15 pages.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.02 seconds
      cpu time            0.01 seconds


1156
1157  proc transpose data=lbc out=trlbcraw;
1158    by subject foldername lbdtn lbdtc recordid;
1159    var na_raw k_raw creat_raw  cl_raw BICARB_raw gluc_raw bun_raw ca_raw ua_raw phos_raw mg_raw creact_raw ck_raw bnp_raw;
1160  run;

NOTE: There were 399 observations read from the data set WORK.LBC.
NOTE: The data set WORK.TRLBCRAW has 5586 observations and 8 variables.
NOTE: Compressing data set WORK.TRLBCRAW decreased size by 71.43 percent.
      Compressed is 10 pages; un-compressed would require 35 pages.
NOTE: PROCEDURE TRANSPOSE used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds


1161
1162  proc transpose data=lbc out=trlbcun;
1163    by subject foldername lbdtn lbdtc recordid;
1164    var na_un k_un creat_un  cl_un BICARB_un gluc_un bun_un ca_un ua_un phos_un mg_un creact_un ck_un bnp_un;
1165  run;

NOTE: There were 399 observations read from the data set WORK.LBC.
NOTE: The data set WORK.TRLBCUN has 5586 observations and 8 variables.
NOTE: Compressing data set WORK.TRLBCUN decreased size by 83.64 percent.
      Compressed is 9 pages; un-compressed would require 55 pages.
NOTE: PROCEDURE TRANSPOSE used (Total process time):
      real time           0.05 seconds
      cpu time            0.06 seconds


1166
1167  data chem;
1168    merge  trlbcraw(in=x1 rename=(col1=LBORRES) drop=_name_ _label_) trlbcun(in=x2 rename=(col1=LBORRESU)drop=_name_ _label_);
1169    by subject foldername lbdtn lbdtc recordid;
1170    if x1;
1171  run;

NOTE: MERGE statement has more than one data set with repeats of BY values.
NOTE: There were 5586 observations read from the data set WORK.TRLBCRAW.
NOTE: There were 5586 observations read from the data set WORK.TRLBCUN.
NOTE: The data set WORK.CHEM has 5586 observations and 7 variables.
NOTE: Compressing data set WORK.CHEM decreased size by 86.54 percent.
      Compressed is 7 pages; un-compressed would require 52 pages.
NOTE: DATA statement used (Total process time):
      real time           0.05 seconds
      cpu time            0.06 seconds

Hi,

 

can somebody help on the merge statement issue. I want the exactly same output but without the Merge statement note. I think Proc Sql can help, but I am not able to figure how to get there. Inputs are appreciated.

 

EDITED: 1:40 PM EST. Thanks

 

Thanks Kurt, wasn't aware about this functionality

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

If you just want to match observations from two datasets here are some choices.

  1. Use MERGE without BY statement.  Make sure to set the right setting for the MERGENOBY option.
  2. Add an new variable to use for the BY statement.
  3. Use two separate SET statements.
options mergnoby=nowarn;
data one;
  merge A B ;
run;

data Ax ;
  n+1;
  set a;
run;
data Bx;
  n+1;
  set b;
run;
data two;
  merge ax bx;
  by n;
run;

data three;
  set a;
  set b;
run;

Whether any of these make sense for your code I don't know since I don't really understand what you are trying to do.

 

Note that if the number of records do NOT match between the two datasets then the results will be different based on the method used. In the last one the extra records from the longer file will be lost.  In the first one the values from the last record from the shorter file will be repeated for all of the extra records from the longer file.  In the middle one the variables from the shorter file will be missing on the extra records.

View solution in original post

14 REPLIES 14
Kurt_Bremser
Super User

Please post logs or code by simply copy/pasting them into a window opened with the {i} or "little running man" button. Then we all can read them, even behind corporate firewalls that prevent the download of Office filed.

Astounding
PROC Star
You have the right number of observations in the right order for both incoming data sets. Just remove the BY statement and the IF statement.
VinnyR
Calcite | Level 5
By statement is a required statement if you merge datasets
SASKiwi
PROC Star

No it is not. You won't get an error if you MERGE datasets without a BY statement.

Astounding
PROC Star
No, it's not. It's often needed to get the proper result, but it isn't needed in this case.
VinnyR
Calcite | Level 5
1399
1400 data chem;
1401 merge trlbcraw(in=x1 rename=(col1=LBORRES) drop=_name_ _label_) trlbcun(in=x2 rename=(col1=LBORRESU)drop=_name_ _label_);
1402 *by subject foldername lbdtn lbdtc recordid;
1403 run;

ERROR: No BY statement was specified for a MERGE statement.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.CHEM may be incomplete. When this step was stopped there were 0 observations and 7 variables.
WARNING: Data set WORK.CHEM was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
VinnyR
Calcite | Level 5
Organization specific rule, may be! Any other solution?
VinnyR
Calcite | Level 5
Thanks, Kurt, but I am not sure if it is a good idea to use this option. Is there nothing wrong in using this option?
Kurt_Bremser
Super User

This option can be set to a non-default value in order to alert programmers to a missing by statement when a merge is used (this is usually not wanted and causes problems).

If the option is set to ERROR for your organization, and you need a merge without by, you can temporarily set the option to NOWARN before the step and then reset it to ERROR after the step in order to comply with coding policies. When all three steps (option-data-option) happen in immediate succession, it is clear what you are doing and that you are doing it on purpose.

VinnyR
Calcite | Level 5
Thanks a lot Kurt,

I understand your point now.

Thanks,
Vinny
Tom
Super User Tom
Super User

If you just want to match observations from two datasets here are some choices.

  1. Use MERGE without BY statement.  Make sure to set the right setting for the MERGENOBY option.
  2. Add an new variable to use for the BY statement.
  3. Use two separate SET statements.
options mergnoby=nowarn;
data one;
  merge A B ;
run;

data Ax ;
  n+1;
  set a;
run;
data Bx;
  n+1;
  set b;
run;
data two;
  merge ax bx;
  by n;
run;

data three;
  set a;
  set b;
run;

Whether any of these make sense for your code I don't know since I don't really understand what you are trying to do.

 

Note that if the number of records do NOT match between the two datasets then the results will be different based on the method used. In the last one the extra records from the longer file will be lost.  In the first one the values from the last record from the shorter file will be repeated for all of the extra records from the longer file.  In the middle one the variables from the shorter file will be missing on the extra records.

VinnyR
Calcite | Level 5
Thanks for second and third options TOM!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 14 replies
  • 1166 views
  • 1 like
  • 5 in conversation