Hi, Does anyone know how to count the number of different id for each year.
I have a data sample from 1990-2010 which contains time series data of different id. The number of different id is different per year.
proc sql;
create table dataout as
select
count(distinct id)
from
datain;
quit;
codes above work for the whole data set but not per year. Thanks in advance
Add a group by year clause in.
Add a group by year clause in.
thanks Reeza
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.