01-17-2025
ed_sas_member
Meteorite | Level 14
Member since
09-24-2019
- 1,158 Posts
- 416 Likes Given
- 267 Solutions
- 448 Likes Received
This widget could not be displayed.
-
Latest posts by ed_sas_member
Subject Views Posted 1137 07-06-2020 08:52 AM 2112 07-06-2020 05:26 AM 2123 07-06-2020 04:47 AM 2172 07-06-2020 03:05 AM 1039 07-05-2020 04:07 AM 2105 07-04-2020 04:10 AM 2035 07-02-2020 02:27 PM 4057 06-27-2020 09:34 AM 2629 06-27-2020 08:14 AM 2659 06-27-2020 07:39 AM -
Activity Feed for ed_sas_member
- Got a Like for Re: Creating a shell for a lab table. 12-26-2024 01:38 AM
- Got a Like for Re: Paired T test. 12-16-2024 02:55 AM
- Got a Like for Re: Using proc sql to create min and max. 12-10-2024 07:03 AM
- Got a Like for Re: Counting observations in consecutive year columns. 09-21-2023 05:58 AM
- Got a Like for Re: Changing font size in proc sgplot. 07-25-2023 02:33 PM
- Got a Like for Re: How to learn sas. 07-14-2023 07:49 AM
- Got a Like for Re: proc sgplot hbar: Changing the color of the bar at a specified value. 05-19-2023 10:56 PM
- Got a Like for Re: PROC TRANSPOSE with multiple variables. 11-30-2022 12:46 AM
- Got a Like for Re: Proc Report Vertical alignment of text. 10-06-2022 07:37 PM
- Got a Like for Re: how do i alternate color for each new value?. 08-24-2022 10:47 AM
- Got a Like for Re: Can I display column names instead of labels on PROC REPORT?. 07-08-2022 05:38 AM
- Got a Like for Re: how to change data one as 1 and two as 2. 05-25-2022 01:10 AM
- Got a Like for Re: Get Storm File in .xlsx Format. 05-16-2022 04:13 PM
- Got a Like for Re: Proc Report Vertical alignment of text. 10-29-2020 07:06 PM
- Got a Like for Re: Finding average of x and y for each group. 10-24-2020 11:09 AM
- Got a Like for Re: Share Your Certification Story with Us. 08-31-2020 11:08 AM
- Got a Like for Re: Share Your Certification Story with Us. 08-19-2020 10:59 AM
- Posted Re: Selecting multiple codes and excluding certain codes - array on SAS Programming. 07-06-2020 08:52 AM
- Posted Re: How can i return the output datasets from Proc Tabulate procedure back to the orginal tables??? on SAS Procedures. 07-06-2020 05:26 AM
- Got a Like for Re: How can i return the output datasets from Proc Tabulate procedure back to the orginal tables???. 07-06-2020 05:20 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 3 2 2 1 -
My Liked Posts
Subject Likes Posted 1 04-15-2020 09:23 AM 1 12-01-2019 03:17 PM 1 05-02-2020 10:24 AM 1 05-22-2020 04:53 AM 1 05-12-2020 06:35 AM
07-06-2020
08:52 AM
Hi @Chris_LK_87
Does this code meet your needs?
data want;
set have;
array code(*) $ atc1-atc500;
Hypertension=0;
J01_flag=0;
do i=1 to dim(code);
if prxmatch('/(C02|C03|C07|C08|C09).*/',code(i)) and code(i) not in ('C02AC02','C07AA07') then Hypertension=1;
if prxmatch('/(J01).*/',code(i)) and code(i) ne 'J01XX05' then J01_flag=1;
end;
drop i;
run;
Best,
... View more
- Tags:
- prxmatch
07-06-2020
05:26 AM
You're very welcome @EC189QRW 😊
... View more
07-06-2020
04:47 AM
1 Like
Hi @EC189QRW
Could you pease post your log?
Here is what I get when I run the code:
data class;
set sashelp.class;
if height<=55 then
h='01 L';
else if height<=60 then
h='02 M';
else
h='03 H';
run;
proc tabulate data=class out=temp;
class age sex h;
table age='', h=''*N='';
run;
proc transpose data=temp out=want (drop=_:);
var N;
id h;
by age;
run;
proc print data=want;
Best,
... View more
07-06-2020
03:05 AM
1 Like
Hi @EC189QRW
Please try PROC TABULATE:
proc transpose data=temp out=want (drop=_:);
var N;
by age;
id sex;
run;
NB: you could also directly use a PROC REPORT:
proc report data=sashelp.class out=want;
column age sex;
define age / group '';
define sex / across '';
run;
Best,
... View more
- Tags:
- PROC TABULATE
07-05-2020
04:07 AM
Hi @Tracy_Bis
Here is an attempt to achieve this:
data have;
infile datalines dlm="09"x;
input Have_PersonID $ Have_Date:$200. Have_Store:$200.;
datalines;
123 04/12/2019,04/12/2019,04/12/2019,04/12/2019,04/12/2019,04/12/2019,04/12/2019,04/12/2019 Tracy's Store,Tracy's Store,Tracy's Store,Tracy's Store,Tracy's Store,Tracy's Store,Tracy's Store,Tracy's Store
457 07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019,07/05/2019 ,,,,,,,,,,,,,,
789 03/19/2019,03/19/2019,03/19/2019,03/19/2019,03/19/2019,03/19/2019,03/19/2019,03/19/2019,03/19/2019 ,,,,,,,,,
101 05/18/2019,05/18/2019 Mickeys,Mickeys
234 08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019,08/02/2019 Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND,Donalds, ND
557 05/19/2019,05/19/2019,05/19/2019,05/19/2019,05/30/2019,05/30/2019,05/30/2019 Daisy's, TX,Daisy's, TX,Daisy's, TX,Daisy's, TX,Pluto, MT,Pluto, MT,Pluto, MT
891 06/21/2019,06/21/2019,06/21/2019,07/10/2019 Hewy, Dewy, And Lewy,Hewy, Dewy, And Lewy,Hewy, Dewy, And Lewy,Goofy, Daffy, And Minnie
;
run;
%macro _mymac(param);
data _have_¶m. (keep= Have_PersonID have_¶m._i i);
set have;
do i=1 to countw(Have_¶m.);
have_¶m._i = scan(Have_¶m.,i,",");
if not missing(have_¶m._i) then output _have_¶m.;
end;
run;
proc sort data=_have_¶m. nodupkey;
by Have_PersonID have_¶m._i;
run;
proc sort data=_have_¶m.;
by Have_PersonID i;
run;
proc transpose data=_have_¶m. out=_have_¶m._tr (drop=_:);
var have_¶m._i;
by Have_PersonID;
run;
data _have_¶m._final;
set _have_¶m._tr;
length have_¶m._i $ 200;
want_¶m. = catx(", ", of col:);
keep Have_PersonID want_¶m.;
run;
%mend;
%_mymac(date)
%_mymac(store)
data want;
merge _have_date_final _have_store_final;
by Have_PersonID;
run;
Output:
All the best,
... View more
07-04-2020
04:10 AM
Hi @Smitha9
Here is another approach using pearl regular expressions:
data want;
set have;
if prxmatch('/4\s*$/',number) then delete;
run;
The PRXMATCH() function looks for the pattern 4 followed by 0, 1 or more blanks (\s*) at the end of the string ($) in the variable 'number'.
Best,
... View more
- Tags:
- prxmatch
07-02-2020
02:27 PM
Hi @gbayya
Could you please explain the logic and show what the output would be? (a report / a dataset ?)
Best,
... View more
06-27-2020
09:34 AM
Hi @MonsterGnom
Could you please try the following method to impute missing value using LOCF method?
No need to use a macroprogram.
data have;
merge sorted_spread (in=a) sorted_transaction (in=b);
by time;
id=1; /*identifier to group all observations together*/
run;
data forward (drop=id);
update have(obs=0) have;
by id;
output;
run;
... View more
06-27-2020
07:39 AM
Hi @Abastaki Please look at the Error message in the log (red cross) It seems that the path of the Excel file is not valid. To get the right one, please right click on the file name in the File and Folder part on the left of your screen, and select Properties. You will then be able to copy-paste the path. Best,
... View more
06-27-2020
06:44 AM
1 Like
Hi @Kirtid
Please try this:
data have;
infile datalines dsd missover dlm="09"x;
input Item $ Year X1 X2;
datalines;
A 2018 12
A 2018 10
B 2019 20
B 2019 5
C 2017 1
C 2017 1 2
C 2017
D 2016
E 2016 10 2
E 2016 6
;
/* Identify record number within each group item-year */
data have2;
set have;
by Item Year;
if first.item then num=0;
num+1;
run;
/* Create OUTPUT1 */
data output1;
set have2;
by item year num;
retain x1_bis x2_bis;
if first.year then call missing(x1_bis, x2_bis);
if not missing(x1) then x1_bis=x1;
if not missing(x2) then x2_bis=x2;
if last.year then output;
drop x1 x2;
rename x1_bis=x1 x2_bis=x2;
run;
/* Identify conflicts in values of X1/X2 -> OUTPUT2 */
proc sql;
create table output2 as
select *
from have2
where x1 is not missing
group by item, year
having count(distinct x1) > 1
union all corr
select *
from have2
where x2 is not missing
group by item, year
having count(distinct x2) > 1
order by item, year, num;
quit;
proc print data=output1;run;
proc print data=output2;run;
Best,
... View more
06-27-2020
05:57 AM
Thank you so much @Sarah-R!
... View more
06-27-2020
05:56 AM
Hi @stippur
Did you put :
- a where clause on upcase(country) = "US" to be sure to retrieve "US", "Us" and "us" values?
- the following by statement: by state descending Postal_code employee_ID;
Best,
... View more
06-27-2020
05:31 AM
Hi @Sarah-R
Would the option style=journal in your ODS statement be convenient?
e.g.
ods pdf file="xxx/xxx.pdf" style=journal;
proc report data=sashelp.class;
...;
run;
ods pdf close;
Otherwise, you can have more control by using a COMPUTE AFTER _PAGE_ statement:
compute after _page_ / style={bordertopcolor=black bordertopwidth=.2in};
line ' ';
endcomp;
Best,
... View more
06-27-2020
04:43 AM
My pleasure @Sarah-R !
... View more