- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-29-2020 06:39 PM
(702 views)
Hi, I am trying to count the deaths by country at every day. I am doing this but it's not working.
DATA MYLIB_D3.NB_DECES;
SET MYLIB_D3.COVID_DATA;
BY date country;
WHERE new_deaths>=1;
RUN;
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
That just creates a subset, and no count of anything. Please give us an example of your data, and what you expect to get out of it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
PROC FREQ produces counts
--
Paige Miller
Paige Miller