Hello,
I merged two data sets (covid) and (ocwwp) and produced table below. My problem is that I have 2 "dates" variables (covid) is "date" and (ocwwp) is "Sample_date". Additionally I have a location variable that are (covid) is "area" and (ocwwp) is "Wwtp_Name" and they both have the "Orange" observation. I basically to use the dates data from both (covid) and (ocwwp) for a time series graph with my "case" and "concentration" variable. But I guess I just dont know how to go about it now.
Do I just make my date variables into 1 variable?
Below is my code how I merged the data
data pmerge;
merge mycovid.ocovid
mycovid.ocwwp;
run;
Instead of merging, stack the datasets and rename the "common" variables:
data want;
length ds dsname $41;
set
mycovid.ocovid
mycovid.ocwwp (rename=(sample_date=date wwtp_name=area))
indsname=ds
;
dsname = ds;
run;
The additional variable dsname will contain the source.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.