I need to count the unique number of Churn based on the Account_length. The sample data is provided below:
The result should be like this
Account_length Churn Count
1 False 7
1 True 1
2 True 1
2 False 1
Any help or advice appreciated,
Cheers,
Doe
proc sql;
select account_length, churn, count(churn) as count
from have
group by account_length, churn;
quit;
* Correction to the expected results
The result should be like this
Account_length Churn Count
1 False 7
1 True 1
2 True 1
3 False 1
Any help or advice appreciated,
Cheers,
Doe
proc sql;
select account_length, churn, count(churn) as count
from have
group by account_length, churn;
quit;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.